diff --git a/demonstrations/honljeu/pages/page-168-0.html b/demonstrations/honljeu/pages/page-168-0.html new file mode 100644 index 0000000000000000000000000000000000000000..746fbc254c4151152f3db42cab59b40a639c9382 --- /dev/null +++ b/demonstrations/honljeu/pages/page-168-0.html @@ -0,0 +1,163 @@ + + + What is an algorithm and why should you care? (video) | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

What is an algorithm and why should you care?

Current time:0:00Total duration:5:28

Want to join the conversation?

To get started, your account must be at least 3 days old, have a verified email address, and have at least 5,000 energy points.
No posts yet.

Video transcript

- [Voiceover] What is an algorithm? One definition might be a set of steps to accomplish a task. You might have an algorithm for getting from home to school, for making a grilled cheese sandwich, or for finding what you're +looking for in a grocery store. In computer science, an +algorithm is a set of steps for a computer program +to accomplish a task. Algorithms put the science +in computer science. And finding good algorithms +and knowing when to apply them will allow you to write +interesting and important programs. Let's talk about a few famous algorithms. How does Google Hangouts +transmit live video across the Internet so quickly? They use audio and video +compression algorithms. How does Google Maps figure out how to get from Dallas, Texas to Orlando, Florida so that you can get to Disney World? They use a route finding algorithm. How does Pixar color a +3D model of a character based on the lighting in a virtual room? They use a rendering algorithm. How does Nasa choose how +to arrange the solar panels on the International Space Station and when to rearrange them? They use an optimization +and a scheduling algorithm. Those algorithms are more complex than our everyday algorithms like making a grilled cheese sandwich. But they boil down to the same thing, a set of steps to accomplish a task. If you know something +about existing algorithms, you can save yourself some effort and make your programs faster by applying the right one. For example, let's say +that you're writing a game and you want the user to be able to play against the computer. Well, you could look at +checkers games for inspiration. Computer scientists have +figured out how to write checkers programs that never lose by using the minimax search algorithm to search through the huge +tree of possible moves. If your game is similar to checkers, then you might be able to use algorithms based on these techniques. If not, then knowing the +limitations of those algorithms might lead you to redesign your game if it requires having a +skilled computer player. It's also important to know +how to design new algorithms as well as how to analyze their +correctness and efficiency. In the biological sciences, new algorithms are +continually being designed with purposes like designing +the molecular structures that are the core of +disease fighting drugs. In physics, algorithms simulate climate and weather patterns. In other algorithms, search +and analyze the vast data about stars in the +universe that's collected by automated space telescopes. Across all the sciences, +and even on websites like Khan Academy, efficient +algorithms are needed to analyze huge data sets +or to select intelligently from a vast number of possible decisions. In just about any area +you might be interested, new algorithms will allow +massive computational power to be harnessed to do things +that people really need and care about. Now, not all algorithms are created equal. So what makes a good algorithm? The two most important criteria are that it solves a problem and that it does so efficiently. Most of the time, we want an algorithm to give us an answer that +we know is always correct. Sometimes we can live with an algorithm that doesn't give us the correct +answer or the best answer because the only perfect algorithms that we know for those problems take a really, really long time. For example, let's say we want a program that would determine +the most efficient route for a truck that delivers packages, starting and ending the day at a depot. It would take weeks to run going through all the possibilities. But if we're okay with a program that would determine a route that's good but maybe not the best, then it could run in seconds. In some case, good is good enough. How do you measure the +efficiency of an algorithm? We could time how long +it takes to run the code, but that would only tell +us about that particular implementation in a certain +programming language on a particular computer and just for the input it was given. Instead, computer +scientists use a technique called asymptotic analysis, which allows algorithms to +be compared independently of a particular programming +language or hardware so that we can conclusively say that yes, some algorithms are more +efficient than others. Now you can learn about algorithms and asymptotic analysis on Khan Academy thanks to the contribution +of two Dartmouth college professors. Tom Cormen is the first author of the most popular +college algorithms textbook in the world, plus the author of Algorithms Unlocked. Devin Balkcom designed +Dartmouth's intro CS course and researches robotics. He built the world's first +origami folding robot. Tom and Devin will teach +you many of the algorithms that you would learn in APCS or CS 101, like searching algorithms, +sorting algorithms, recursive algorithms +and my personal favorite, graph algorithms. There will be tons of +interactive visualizations, quizzes and coding challenges to help you understand better along your learning journey.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-170-0.html b/demonstrations/honljeu/pages/page-170-0.html new file mode 100644 index 0000000000000000000000000000000000000000..9fb303ccf18609691f231d6c6b551cdc5a09635e --- /dev/null +++ b/demonstrations/honljeu/pages/page-170-0.html @@ -0,0 +1,61 @@ + + + Algorithms | Computer science | Computing | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Unit 1: Algorithms

About this unit

We've partnered with Dartmouth college professors Tom Cormen and Devin Balkcom to teach introductory computer science algorithms, including searching, sorting, recursion, and graph theory. Learn with a combination of articles, visualizations, quizzes, and coding challenges.
What are algorithms and why should you care? We'll start with an overview of algorithms and then discuss two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game.
Learn how to use asymptotic analysis to describe the efficiency of an algorithm, and how to use asymptotic notation (Big O, Big-Theta, and Big-Omega) to more precisely describe the efficiency.
Use the recursive technique to solve the Towers of Hanoi, a classic mathematical puzzle and one reportedly faced by monks in a temple.
Learn how to describe graphs, with their edges, vertices, and weights, and see different ways to store graph data, with edge lists, adjacency matrices, and adjacency lists.
Learn how to traverse a graph using breadth-first-search to find a particular node or to make sure you've visited all the nodes, traversing one layer at a time.
Ideas of how you could continue your learning journey in algorithms.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-172-0.html b/demonstrations/honljeu/pages/page-172-0.html new file mode 100644 index 0000000000000000000000000000000000000000..9fb303ccf18609691f231d6c6b551cdc5a09635e --- /dev/null +++ b/demonstrations/honljeu/pages/page-172-0.html @@ -0,0 +1,61 @@ + + + Algorithms | Computer science | Computing | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Unit 1: Algorithms

About this unit

We've partnered with Dartmouth college professors Tom Cormen and Devin Balkcom to teach introductory computer science algorithms, including searching, sorting, recursion, and graph theory. Learn with a combination of articles, visualizations, quizzes, and coding challenges.
What are algorithms and why should you care? We'll start with an overview of algorithms and then discuss two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game.
Learn how to use asymptotic analysis to describe the efficiency of an algorithm, and how to use asymptotic notation (Big O, Big-Theta, and Big-Omega) to more precisely describe the efficiency.
Use the recursive technique to solve the Towers of Hanoi, a classic mathematical puzzle and one reportedly faced by monks in a temple.
Learn how to describe graphs, with their edges, vertices, and weights, and see different ways to store graph data, with edge lists, adjacency matrices, and adjacency lists.
Learn how to traverse a graph using breadth-first-search to find a particular node or to make sure you've visited all the nodes, traversing one layer at a time.
Ideas of how you could continue your learning journey in algorithms.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-173-0.html b/demonstrations/honljeu/pages/page-173-0.html new file mode 100644 index 0000000000000000000000000000000000000000..fd2c126e080040100c0ef8d6fb61dfd4cb10a2da --- /dev/null +++ b/demonstrations/honljeu/pages/page-173-0.html @@ -0,0 +1,61 @@ + + + A guessing game (article) | Algorithms | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

A guessing game

Let's play a little game to give you an idea of how different algorithms for the same problem can have wildly different efficiencies. The computer is going to randomly select an integer from 1 to 15. You'll keep guessing numbers until you find the computer's number, and the computer will tell you each time if your guess was too high or too low:
Once you've found the number, reflect on what technique you used when deciding what number to guess next.
Maybe you guessed 1, then 2, then 3, then 4, and so on, until you guessed the right number. We call this approach linear search, because you guess all the numbers as if they were lined up in a row. It would work. But what is the highest number of guesses you could need? If the computer selects 15, you would need 15 guesses. Then again, you could be really lucky, which would be when the computer selects 1 and you get the number on your first guess. How about on average? If the computer is equally likely to select any number from 1 to 15, then on average you'll need 8 guesses.
But you could do something more efficient than just guessing 1, 2, 3, 4, …, right? Since the computer tells you whether a guess is too low, too high, or correct, you can start off by guessing 8. If the number that the computer selected is less than 8, then because you know that 8 is too high, you can eliminate all the numbers from 8 to 15 from further consideration. If the number selected by the computer is greater than 8, then you can eliminate 1 through 8. Either way, you can eliminate half the numbers. On your next guess, eliminate half of the remaining numbers. Keep going, always eliminating half of the remaining numbers.
We call this halving approach binary search, and no matter which number from 1 to 15 the computer has selected, you should be able to find the number in at most 4 guesses with this technique.
Here, try it for a number from 1 to 300. You should need no more than 9 guesses.
How many guesses did it take you to find the number this time? Why should you never need more than 9 guesses? (Can you think of a mathematical explanation)?
We'll return to binary search, and we'll see how you can use it to efficiently search for an item in a JavaScript array. But first, let's look at an algorithm for a trickier problem.

This content is a collaboration of Dartmouth Computer Science professors Thomas Cormen and Devin Balkcom, plus the Khan Academy computing curriculum team. The content is licensed CC-BY-NC-SA.

Want to join the conversation?

To get started, your account must be at least 3 days old, have a verified email address, and have at least 5,000 energy points.
No posts yet.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-175-0.html b/demonstrations/honljeu/pages/page-175-0.html new file mode 100644 index 0000000000000000000000000000000000000000..2a9b8f44283cc6b2d11ca074e19850fa52218e04 --- /dev/null +++ b/demonstrations/honljeu/pages/page-175-0.html @@ -0,0 +1,61 @@ + + + Algorithms | Computer science | Computing | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Unit 1: Algorithms

About this unit

We've partnered with Dartmouth college professors Tom Cormen and Devin Balkcom to teach introductory computer science algorithms, including searching, sorting, recursion, and graph theory. Learn with a combination of articles, visualizations, quizzes, and coding challenges.
What are algorithms and why should you care? We'll start with an overview of algorithms and then discuss two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game.
Learn how to use asymptotic analysis to describe the efficiency of an algorithm, and how to use asymptotic notation (Big O, Big-Theta, and Big-Omega) to more precisely describe the efficiency.
Use the recursive technique to solve the Towers of Hanoi, a classic mathematical puzzle and one reportedly faced by monks in a temple.
Learn how to describe graphs, with their edges, vertices, and weights, and see different ways to store graph data, with edge lists, adjacency matrices, and adjacency lists.
Learn how to traverse a graph using breadth-first-search to find a particular node or to make sure you've visited all the nodes, traversing one layer at a time.
Ideas of how you could continue your learning journey in algorithms.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-177-0.html b/demonstrations/honljeu/pages/page-177-0.html new file mode 100644 index 0000000000000000000000000000000000000000..2a9b8f44283cc6b2d11ca074e19850fa52218e04 --- /dev/null +++ b/demonstrations/honljeu/pages/page-177-0.html @@ -0,0 +1,61 @@ + + + Algorithms | Computer science | Computing | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Unit 1: Algorithms

About this unit

We've partnered with Dartmouth college professors Tom Cormen and Devin Balkcom to teach introductory computer science algorithms, including searching, sorting, recursion, and graph theory. Learn with a combination of articles, visualizations, quizzes, and coding challenges.
What are algorithms and why should you care? We'll start with an overview of algorithms and then discuss two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game.
Learn how to use asymptotic analysis to describe the efficiency of an algorithm, and how to use asymptotic notation (Big O, Big-Theta, and Big-Omega) to more precisely describe the efficiency.
Use the recursive technique to solve the Towers of Hanoi, a classic mathematical puzzle and one reportedly faced by monks in a temple.
Learn how to describe graphs, with their edges, vertices, and weights, and see different ways to store graph data, with edge lists, adjacency matrices, and adjacency lists.
Learn how to traverse a graph using breadth-first-search to find a particular node or to make sure you've visited all the nodes, traversing one layer at a time.
Ideas of how you could continue your learning journey in algorithms.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-180-0.html b/demonstrations/honljeu/pages/page-180-0.html new file mode 100644 index 0000000000000000000000000000000000000000..e4e9c2942156dc9a03292a660b4a91a6c5a3bf02 --- /dev/null +++ b/demonstrations/honljeu/pages/page-180-0.html @@ -0,0 +1,61 @@ + + + Algorithms | Computer science | Computing | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Unit 1: Algorithms

About this unit

We've partnered with Dartmouth college professors Tom Cormen and Devin Balkcom to teach introductory computer science algorithms, including searching, sorting, recursion, and graph theory. Learn with a combination of articles, visualizations, quizzes, and coding challenges.
What are algorithms and why should you care? We'll start with an overview of algorithms and then discuss two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game.
Learn how to use asymptotic analysis to describe the efficiency of an algorithm, and how to use asymptotic notation (Big O, Big-Theta, and Big-Omega) to more precisely describe the efficiency.
Use the recursive technique to solve the Towers of Hanoi, a classic mathematical puzzle and one reportedly faced by monks in a temple.
Learn how to describe graphs, with their edges, vertices, and weights, and see different ways to store graph data, with edge lists, adjacency matrices, and adjacency lists.
Learn how to traverse a graph using breadth-first-search to find a particular node or to make sure you've visited all the nodes, traversing one layer at a time.
Ideas of how you could continue your learning journey in algorithms.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-182-0.html b/demonstrations/honljeu/pages/page-182-0.html new file mode 100644 index 0000000000000000000000000000000000000000..e4e9c2942156dc9a03292a660b4a91a6c5a3bf02 --- /dev/null +++ b/demonstrations/honljeu/pages/page-182-0.html @@ -0,0 +1,61 @@ + + + Algorithms | Computer science | Computing | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Unit 1: Algorithms

About this unit

We've partnered with Dartmouth college professors Tom Cormen and Devin Balkcom to teach introductory computer science algorithms, including searching, sorting, recursion, and graph theory. Learn with a combination of articles, visualizations, quizzes, and coding challenges.
What are algorithms and why should you care? We'll start with an overview of algorithms and then discuss two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game.
Learn how to use asymptotic analysis to describe the efficiency of an algorithm, and how to use asymptotic notation (Big O, Big-Theta, and Big-Omega) to more precisely describe the efficiency.
Use the recursive technique to solve the Towers of Hanoi, a classic mathematical puzzle and one reportedly faced by monks in a temple.
Learn how to describe graphs, with their edges, vertices, and weights, and see different ways to store graph data, with edge lists, adjacency matrices, and adjacency lists.
Learn how to traverse a graph using breadth-first-search to find a particular node or to make sure you've visited all the nodes, traversing one layer at a time.
Ideas of how you could continue your learning journey in algorithms.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/honljeu/pages/page-183-0.html b/demonstrations/honljeu/pages/page-183-0.html new file mode 100644 index 0000000000000000000000000000000000000000..aed8cb0cba05d8a6c58c20e11a8f35b41d105406 --- /dev/null +++ b/demonstrations/honljeu/pages/page-183-0.html @@ -0,0 +1,61 @@ + + + Discuss: Algorithms in your life (article) | Khan Academy + + + + + + + + + + + +
Skip to main content
+
+
+
+
+
Main content

Discuss: Algorithms in your life

We've given you a little intro to algorithms, and a few examples. Now before we go further, we want to hear what algorithms you can think of.
Leave a comment below answering one or more of these questions, and check out what other students wrote:
  • What algorithms do you use in everyday life? Do you think you could write a program to make them more efficient?
  • What algorithms do you think are used by your favorite games and apps?
  • Have you ever made an algorithm for a program? What did it do? Was it correct and efficient?
Please use the "Tips/Thanks" tab for your answers, not the "Questions" tab. We look forward to your thoughts!

Want to join the conversation?

To get started, your account must be at least 3 days old, have a verified email address, and have at least 5,000 energy points.
No posts yet.
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-0-0.json b/demonstrations/ieckqwf/axtrees/page-0-0.json new file mode 100644 index 0000000000000000000000000000000000000000..0579dbc32a60c325f008ce5438cb5d369d709070 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-0-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Action Capture", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Action Capture"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "A631C1C22C6EBF65892ACFE1A96A4070"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 2}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4"], "backendDOMNodeId": 14, "browsergym_id": "4c870135-e649-4f8b"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["5", "6", "7"], "backendDOMNodeId": 16, "browsergym_id": "c4b4b212-461c-4efb"}, {"nodeId": "5", "ignored": false, "role": {"type": "role", "value": "heading"}, "chromeRole": {"type": "internalRole", "value": 96}, "name": {"type": "computedString", "value": "Action Capture", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Action Capture"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "4", "childIds": ["8"], "backendDOMNodeId": 18, "browsergym_id": "5155036d-131b-4ae5"}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["9"], "backendDOMNodeId": 21, "browsergym_id": "a3155ba6-af3f-497a"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["10"], "backendDOMNodeId": 24, "browsergym_id": "4ff17368-0a21-4458"}, {"nodeId": "8", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Action Capture", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Action Capture"}}]}, "properties": [], "parentId": "5", "childIds": [], "backendDOMNodeId": 19}, {"nodeId": "9", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Wait for user instructions, then begin by typing a URL into a search bar.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Wait for user instructions, then begin by typing a URL into a search bar."}}]}, "properties": [], "parentId": "6", "childIds": [], "backendDOMNodeId": 22}, {"nodeId": "10", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Remember to perform all the actions in the currently active tab.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Remember to perform all the actions in the currently active tab."}}]}, "properties": [], "parentId": "7", "childIds": [], "backendDOMNodeId": 25}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-12-0.json b/demonstrations/ieckqwf/axtrees/page-12-0.json new file mode 100644 index 0000000000000000000000000000000000000000..d18f44035927af606c2e699229431835c9ca3ca1 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-12-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "E2C9E97BB99B7D1B0C234CAB1201BD6E"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 24}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 100, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 101, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 102, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 103, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 104, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 17, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 105, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 214, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 106, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 215, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 107, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 216, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 108, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 217, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 109, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 175, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 218, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 295, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 110, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 131, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 141, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 174, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 176, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 188, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 198, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 219, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 18, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 19, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 20, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 21, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 111, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 132, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 142, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 150, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 158, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 166, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 177, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 180, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 182, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 189, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 199, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 206, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 210, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 220, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 237, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 258, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 263, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 13, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 112, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 133, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 143, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 151, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 159, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 167, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 178, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 183, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 190, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 200, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 207, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 211, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 221, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 238, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 252, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 259, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 264, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 270, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 113, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 134, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 136, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 144, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 152, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 160, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 168, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 179}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 184, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 191, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 194, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 201, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 208}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 208}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 212}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 212}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 213}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 222, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 229, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 239, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 253, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 260, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 265, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 271, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 288, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 114, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 128, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 135}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 137, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 139, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 145, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 153, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 161, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 169, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 185, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 192, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 195, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 202}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 202}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 203}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 204, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 223, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 230, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 240, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 254}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 254}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 255}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 256, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 261, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 266, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 272, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 281, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 289, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 115, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 129, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 138}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 146}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 146}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 147}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 148, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 154}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 154}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 155}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 156, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 162}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 162}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 163}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 164, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 170}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 170}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 171}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 172, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 186, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 193, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 196, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 224, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 227, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 231, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 241, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 242, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 257}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 262}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 267, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 273, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 278, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 282, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 290, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 12, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 116, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 130}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 187}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 197}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 225, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 228}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 232, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 235, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 243, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 268}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 268}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 269}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 274, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 279}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 279}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 280}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 283, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 291}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 291}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 292}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 293, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 3, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 117, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 118, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 233}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 233}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 234}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 236}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 275, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 284}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 284}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 285}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 286, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 294}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 120, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 276, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 287}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 4, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 5, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 6, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 7, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 8, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 9, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 10, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 11, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 277}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 23, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 670, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 442, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 445, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 668, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 22, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 671, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 443}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 447, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 469, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 491, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 513, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 535, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 557, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 579, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 601, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 623, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 645, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 669}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 448}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 449, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 451, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 470}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 471, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 473, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 492}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 493, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 495, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 514}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 515, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 517, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 536}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 537, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 539, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 558}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 559, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 561, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 580}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 581, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 583, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 602}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 603, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 605, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 624}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 625, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 627, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 646}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 647, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 649, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 14, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 15, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 16, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 452, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 455, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 457, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 465, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 474, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 477, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 479, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 487, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 496, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 499, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 501, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 509, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 518, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 521, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 523, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 531, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 540, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 543, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 545, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 553, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 562, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 565, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 567, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 575, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 584, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 587, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 589, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 597, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 606, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 609, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 611, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 619, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 628, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 631, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 633, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 641, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 650, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 653, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 655, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 663, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 453, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 456}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 458, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 475, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 478}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 480, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 497, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 500}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 502, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 519, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 522}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 524, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 541, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 544}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 546, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 563, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 566}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 568, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 585, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 588}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 590, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 607, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 610}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 612, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 629, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 632}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 634, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 651, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 654}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 656, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 454}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 459, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 476}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 481, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 498}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 503, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 520}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 525, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 542}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 547, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 564}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 569, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 586}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 591, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 608}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 613, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 630}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 635, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 652}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 657, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 662}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 460, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 482, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 504, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 526, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 548, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 570, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 592, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 614, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 636, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 658, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 461, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 483, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 505, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 527, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 549, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 571, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 593, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 615, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 637, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 659, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 462, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 484, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 506, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 528, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 550, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 572, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 594, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 616, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 638, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 660, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 463}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 485}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 507}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 529}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 551}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 573}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 595}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 617}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 639}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 661}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-17-0.json b/demonstrations/ieckqwf/axtrees/page-17-0.json new file mode 100644 index 0000000000000000000000000000000000000000..00b0bba07fd4532438886a6d0c3b3764f1d24beb --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-17-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "E48A19AB7E756A4000A5CF9B999445AB"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 20, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 4, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 5, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 21, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 22, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 23, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 24, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 16, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 15, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 6, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 7, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 8, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 9, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 10, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 11, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 12, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 13, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 14, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 25, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 17, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 18, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 19, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-2-0.json b/demonstrations/ieckqwf/axtrees/page-2-0.json new file mode 100644 index 0000000000000000000000000000000000000000..78c6fd8aa4014b1c9503781b93b3073ff0c96a14 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-2-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "989F1965F9D95FC4EB55A71D1284CB52"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 10}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 84, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 85, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 605}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 605}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 634}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 607, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 627, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 86, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 608, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 628, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 87, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 629, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 632, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 88, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 566, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 630}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 631, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 89, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 3, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 567, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 90, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 198, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 568, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 600, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 91, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 199, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 569, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 576, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 584, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 592, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 92, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 200, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 570, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 577, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 585, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 593, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 93, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 159, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 201, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 4, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 571, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 578, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 586, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 594, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 94, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 115, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 125, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 158, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 160, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 172, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 182, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 202, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 263, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 6, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 579, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 587, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 595, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 95, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 116, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 126, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 134, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 142, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 150, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 161, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 164, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 166, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 173, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 183, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 190, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 194, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 203, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 212, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 233, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107"], "backendDOMNodeId": 237, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["108"], "backendDOMNodeId": 264, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 273, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 524, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110", "111"], "backendDOMNodeId": 525, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["112"], "backendDOMNodeId": 572}, {"nodeId": "112", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 572}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 573}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 574, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["114"], "backendDOMNodeId": 580}, {"nodeId": "114", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 580}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 581}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 582, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["116"], "backendDOMNodeId": 588}, {"nodeId": "116", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 588}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 590, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["118"], "backendDOMNodeId": 596}, {"nodeId": "118", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 596}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 598, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["120"], "backendDOMNodeId": 96, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["121", "122"], "backendDOMNodeId": 117, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["123"], "backendDOMNodeId": 127, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["124"], "backendDOMNodeId": 135, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["125"], "backendDOMNodeId": 143, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["126"], "backendDOMNodeId": 151, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["127"], "backendDOMNodeId": 162, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["128"], "backendDOMNodeId": 167, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["129", "130"], "backendDOMNodeId": 174, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["131"], "backendDOMNodeId": 184, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["132"], "backendDOMNodeId": 191, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["133"], "backendDOMNodeId": 195, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["134"], "backendDOMNodeId": 204, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["135"], "backendDOMNodeId": 213, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["136"], "backendDOMNodeId": 227, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["137"], "backendDOMNodeId": 234, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["138", "139"], "backendDOMNodeId": 238, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["141", "142", "143"], "backendDOMNodeId": 274, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["144"], "backendDOMNodeId": 526, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 565, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "113", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "115", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 583}, {"nodeId": "117", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 591}, {"nodeId": "119", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 599}, {"nodeId": "120", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["145", "146"], "backendDOMNodeId": 97, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["147"], "backendDOMNodeId": 118, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["148", "149"], "backendDOMNodeId": 120, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["150"], "backendDOMNodeId": 128, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["152"], "backendDOMNodeId": 144, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["153"], "backendDOMNodeId": 152, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "127", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 163}, {"nodeId": "128", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["154"], "backendDOMNodeId": 168, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["155"], "backendDOMNodeId": 175, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["156"], "backendDOMNodeId": 178, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["157", "158"], "backendDOMNodeId": 185, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "132", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["159"], "backendDOMNodeId": 192}, {"nodeId": "159", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 192}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": [], "backendDOMNodeId": 193}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["160"], "backendDOMNodeId": 196}, {"nodeId": "160", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 196}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 197}, {"nodeId": "134", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["161"], "backendDOMNodeId": 205, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["162"], "backendDOMNodeId": 214, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["163", "164"], "backendDOMNodeId": 228, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["165"], "backendDOMNodeId": 235, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["166", "167"], "backendDOMNodeId": 239, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["168"], "backendDOMNodeId": 256, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["169"], "backendDOMNodeId": 266, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": [], "backendDOMNodeId": 275, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": [], "backendDOMNodeId": 276, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["170"], "backendDOMNodeId": 277, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["171", "172"], "backendDOMNodeId": 527, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "120", "childIds": ["173"], "backendDOMNodeId": 98, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "120", "childIds": ["174"], "backendDOMNodeId": 112, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "147", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "121", "childIds": [], "backendDOMNodeId": 119}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "122", "childIds": ["175"], "backendDOMNodeId": 121, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "122", "childIds": ["176"], "backendDOMNodeId": 123, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["177", "178"], "backendDOMNodeId": 129, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "151", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["179", "180"], "backendDOMNodeId": 137, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["181", "182"], "backendDOMNodeId": 145, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["183", "184"], "backendDOMNodeId": 153, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "128", "childIds": ["185"], "backendDOMNodeId": 169, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["186"], "backendDOMNodeId": 176, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["187"], "backendDOMNodeId": 179, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "157", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "131", "childIds": ["188"], "backendDOMNodeId": 186}, {"nodeId": "188", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 186}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": [], "backendDOMNodeId": 187}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["189"], "backendDOMNodeId": 188, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "161", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "134", "childIds": ["190", "191"], "backendDOMNodeId": 206, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "162", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["192", "193"], "backendDOMNodeId": 215, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "136", "childIds": ["194"], "backendDOMNodeId": 229}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 229}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "163", "childIds": [], "backendDOMNodeId": 230}, {"nodeId": "164", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["195"], "backendDOMNodeId": 231, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": [], "backendDOMNodeId": 236, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "138", "childIds": ["196", "197"], "backendDOMNodeId": 240, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "167", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["198"], "backendDOMNodeId": 249, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "168", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "139", "childIds": ["199"], "backendDOMNodeId": 257, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "140", "childIds": ["200", "201"], "backendDOMNodeId": 267, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["202", "203", "204", "205"], "backendDOMNodeId": 278, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["206"], "backendDOMNodeId": 528, "browsergym_id": "add4ab5c-9978-4f9b"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["207"], "backendDOMNodeId": 538, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "145", "childIds": ["208"], "backendDOMNodeId": 99, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "146", "childIds": ["209"], "backendDOMNodeId": 113, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "175", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "148", "childIds": [], "backendDOMNodeId": 122}, {"nodeId": "176", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "149", "childIds": [], "backendDOMNodeId": 124}, {"nodeId": "177", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "150", "childIds": ["210"], "backendDOMNodeId": 130}, {"nodeId": "210", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 130}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "177", "childIds": [], "backendDOMNodeId": 131}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["211"], "backendDOMNodeId": 132, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "179", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "151", "childIds": ["212"], "backendDOMNodeId": 138}, {"nodeId": "212", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 138}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "179", "childIds": [], "backendDOMNodeId": 139}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "151", "childIds": ["213"], "backendDOMNodeId": 140, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "181", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "152", "childIds": ["214"], "backendDOMNodeId": 146}, {"nodeId": "214", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 146}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "181", "childIds": [], "backendDOMNodeId": 147}, {"nodeId": "182", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "152", "childIds": ["215"], "backendDOMNodeId": 148, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "153", "childIds": ["216"], "backendDOMNodeId": 154}, {"nodeId": "216", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 154}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 155}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "153", "childIds": ["217"], "backendDOMNodeId": 156, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "185", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["218"], "backendDOMNodeId": 170, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "155", "childIds": [], "backendDOMNodeId": 177, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "187", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["219"], "backendDOMNodeId": 180, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "189", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "158", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "161", "childIds": ["220"], "backendDOMNodeId": 207, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "161", "childIds": ["221"], "backendDOMNodeId": 210, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 216, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "162", "childIds": ["222", "223", "224", "225", "226", "227", "228", "229", "230"], "backendDOMNodeId": 217, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "164", "childIds": [], "backendDOMNodeId": 232}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231"], "backendDOMNodeId": 241, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["232"], "backendDOMNodeId": 246, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "167", "childIds": ["233"], "backendDOMNodeId": 250, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "168", "childIds": ["234", "235"], "backendDOMNodeId": 258, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "169", "childIds": ["236"], "backendDOMNodeId": 268, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "201", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "169", "childIds": ["237"], "backendDOMNodeId": 271, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "202", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "170", "childIds": ["238"], "backendDOMNodeId": 279, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "203", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "170", "childIds": ["239", "240"], "backendDOMNodeId": 283, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "170", "childIds": ["241", "242"], "backendDOMNodeId": 385, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 523, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Stop generating response", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Stop generating response"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "171", "childIds": ["243", "244"], "backendDOMNodeId": 529, "browsergym_id": "dfe84368-f85f-4dba"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["245"], "backendDOMNodeId": 539, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "208", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "173", "childIds": ["246", "247"], "backendDOMNodeId": 100, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "209", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "174", "childIds": [], "backendDOMNodeId": 114}, {"nodeId": "211", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "178", "childIds": [], "backendDOMNodeId": 133}, {"nodeId": "213", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 141}, {"nodeId": "215", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "182", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "185", "childIds": [], "backendDOMNodeId": 171}, {"nodeId": "219", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "187", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "220", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "190", "childIds": ["248"], "backendDOMNodeId": 208, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "221", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "222", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 218, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "223", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 219, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "224", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 220, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "225", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 221, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "226", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 222, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "227", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 223, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "228", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 224, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 225, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "230", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["249"], "backendDOMNodeId": 242, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "232", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "197", "childIds": ["250"], "backendDOMNodeId": 247}, {"nodeId": "250", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 247}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "232", "childIds": [], "backendDOMNodeId": 248}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["251", "252"], "backendDOMNodeId": 251, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "234", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "199", "childIds": ["253"], "backendDOMNodeId": 259}, {"nodeId": "253", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 259}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "234", "childIds": [], "backendDOMNodeId": 260}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "199", "childIds": ["254"], "backendDOMNodeId": 261, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": ["255"], "backendDOMNodeId": 269, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "237", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "201", "childIds": [], "backendDOMNodeId": 272}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "202", "childIds": ["256"], "backendDOMNodeId": 280, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "203", "childIds": ["257"], "backendDOMNodeId": 284, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "203", "childIds": ["258"], "backendDOMNodeId": 290, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "204", "childIds": ["259"], "backendDOMNodeId": 386, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "242", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "204", "childIds": ["260"], "backendDOMNodeId": 395, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "206", "childIds": ["261"], "backendDOMNodeId": 530, "browsergym_id": "ff50a24c-482e-4753"}, {"nodeId": "244", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "206", "childIds": ["262"], "backendDOMNodeId": 535, "browsergym_id": "86c60d34-213e-491a"}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["263"], "backendDOMNodeId": 540, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "246", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": [], "backendDOMNodeId": 101, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["264", "265", "266", "267", "268", "269", "270", "271", "272"], "backendDOMNodeId": 102, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "220", "childIds": [], "backendDOMNodeId": 209, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "249", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "231", "childIds": ["273"], "backendDOMNodeId": 243, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "251", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "233", "childIds": ["274"], "backendDOMNodeId": 252}, {"nodeId": "274", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 252}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "251", "childIds": [], "backendDOMNodeId": 253}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "233", "childIds": ["275"], "backendDOMNodeId": 254, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "254", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "235", "childIds": [], "backendDOMNodeId": 262}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "236", "childIds": [], "backendDOMNodeId": 270, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "238", "childIds": ["276"], "backendDOMNodeId": 281, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "239", "childIds": ["277", "278"], "backendDOMNodeId": 285, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "240", "childIds": ["279", "280"], "backendDOMNodeId": 291, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "241", "childIds": ["281"], "backendDOMNodeId": 387, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "242", "childIds": ["282"], "backendDOMNodeId": 396, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["283"], "backendDOMNodeId": 531, "browsergym_id": "5ff2f27e-e80d-468e"}, {"nodeId": "262", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": ["284"], "backendDOMNodeId": 536}, {"nodeId": "284", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 536}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "262", "childIds": [], "backendDOMNodeId": 537}, {"nodeId": "263", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["285"], "backendDOMNodeId": 541, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "264", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 103, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "265", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 104, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 105, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "267", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 106, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "268", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 107, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 108, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "270", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 109, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "271", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 110, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 111, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "273", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "249", "childIds": ["286"], "backendDOMNodeId": 244, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "275", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "252", "childIds": [], "backendDOMNodeId": 255}, {"nodeId": "276", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "256", "childIds": [], "backendDOMNodeId": 282}, {"nodeId": "277", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "257", "childIds": ["287"], "backendDOMNodeId": 286}, {"nodeId": "287", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 286}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "277", "childIds": [], "backendDOMNodeId": 287}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "257", "childIds": ["288"], "backendDOMNodeId": 288, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["289", "290"], "backendDOMNodeId": 292, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["291"], "backendDOMNodeId": 296, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["292"], "backendDOMNodeId": 388, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "260", "childIds": ["293"], "backendDOMNodeId": 397, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": ["294"], "backendDOMNodeId": 532, "browsergym_id": "88d2788b-070c-4ba5"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "263", "childIds": ["295"], "backendDOMNodeId": 542, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "286", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "273", "childIds": [], "backendDOMNodeId": 245}, {"nodeId": "288", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "278", "childIds": [], "backendDOMNodeId": 289}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["296"], "backendDOMNodeId": 293, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": [], "backendDOMNodeId": 295, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["297", "298", "299", "300", "301"], "backendDOMNodeId": 297, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["302", "303"], "backendDOMNodeId": 389, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["304", "305", "306", "307", "308", "309"], "backendDOMNodeId": 398, "browsergym_id": "0f42964f-e0f9-4fcb"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["310"], "backendDOMNodeId": 533, "browsergym_id": "017222ed-7256-43f8"}, {"nodeId": "295", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["311", "312", "313"], "backendDOMNodeId": 543, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "289", "childIds": [], "backendDOMNodeId": 294, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "297", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "291", "childIds": ["314"], "backendDOMNodeId": 298, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "298", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "291", "childIds": ["315"], "backendDOMNodeId": 316, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "299", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "291", "childIds": ["316"], "backendDOMNodeId": 334, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "300", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "291", "childIds": ["317"], "backendDOMNodeId": 351, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "301", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "291", "childIds": ["318"], "backendDOMNodeId": 368, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "292", "childIds": ["319"], "backendDOMNodeId": 390, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "292", "childIds": ["320"], "backendDOMNodeId": 393, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "293", "childIds": ["321"], "backendDOMNodeId": 399, "browsergym_id": "5179c955-09ae-4b67"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "293", "childIds": ["322"], "backendDOMNodeId": 401, "browsergym_id": "eb5109d8-22e1-4152"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "293", "childIds": ["323"], "backendDOMNodeId": 403, "browsergym_id": "4f54728f-8a12-4bb8"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "293", "childIds": ["324"], "backendDOMNodeId": 405, "browsergym_id": "cfff987f-ebb8-41fe"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "293", "childIds": ["325"], "backendDOMNodeId": 407, "browsergym_id": "018db1e5-ff31-4691"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "293", "childIds": ["326", "327", "328", "329"], "backendDOMNodeId": 409, "browsergym_id": "7521d548-3960-4933"}, {"nodeId": "310", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Stop generating response", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Stop generating response"}}]}, "properties": [], "parentId": "294", "childIds": [], "backendDOMNodeId": 534}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "295", "childIds": ["330", "331"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "295", "childIds": [], "backendDOMNodeId": 544, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "295", "childIds": ["332", "333"], "backendDOMNodeId": 545, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "297", "childIds": ["334"], "backendDOMNodeId": 299, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "298", "childIds": ["335"], "backendDOMNodeId": 317, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "299", "childIds": ["336"], "backendDOMNodeId": 335, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "317", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "300", "childIds": ["337"], "backendDOMNodeId": 352, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "318", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "301", "childIds": ["338"], "backendDOMNodeId": 369, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "319", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "302", "childIds": ["339"], "backendDOMNodeId": 391}, {"nodeId": "339", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 391}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "319", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "320", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 394}, {"nodeId": "321", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some"}}]}, "properties": [], "parentId": "304", "childIds": [], "backendDOMNodeId": 400}, {"nodeId": "322", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " easy breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " easy breakfast"}}]}, "properties": [], "parentId": "305", "childIds": [], "backendDOMNodeId": 402}, {"nodeId": "323", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " recipes that", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " recipes that"}}]}, "properties": [], "parentId": "306", "childIds": [], "backendDOMNodeId": 404}, {"nodeId": "324", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " require minimal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " require minimal"}}]}, "properties": [], "parentId": "307", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "325", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " time:"}}]}, "properties": [], "parentId": "308", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "309", "childIds": ["340", "341", "342", "343"], "backendDOMNodeId": 5, "browsergym_id": "05bfc169-c4d9-42ff"}, {"nodeId": "327", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "309", "childIds": ["344", "345", "346", "347"], "backendDOMNodeId": 444, "browsergym_id": "6659bfc7-e02a-4627"}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "309", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 478, "browsergym_id": "f0647b08-60f5-45ec"}, {"nodeId": "329", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "309", "childIds": ["352", "353", "354", "355"], "backendDOMNodeId": 508, "browsergym_id": "1a47d74e-5c22-4982"}, {"nodeId": "330", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "311", "childIds": [], "backendDOMNodeId": 635}, {"nodeId": "331", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "311", "childIds": [], "backendDOMNodeId": 636}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "313", "childIds": ["356", "357"], "backendDOMNodeId": 546, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "333", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 561, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 300, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 318, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["361"], "backendDOMNodeId": 336, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "317", "childIds": ["362"], "backendDOMNodeId": 353, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "318", "childIds": ["363"], "backendDOMNodeId": 370, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "340", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "326", "childIds": ["364"], "backendDOMNodeId": 411}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": [], "backendDOMNodeId": 412, "browsergym_id": "73521c16-c015-40d7"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["365", "366", "367", "368", "369", "370", "371", "372", "373", "374"], "backendDOMNodeId": 414, "browsergym_id": "3bb760c7-f2d1-4ae4"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": [], "backendDOMNodeId": 441, "browsergym_id": "d0b9970f-2137-4476"}, {"nodeId": "344", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "327", "childIds": ["375"], "backendDOMNodeId": 445}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "327", "childIds": [], "backendDOMNodeId": 446, "browsergym_id": "29333270-4c21-4e8b"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "327", "childIds": ["376", "377", "378", "379", "380", "381", "382", "383", "384", "385"], "backendDOMNodeId": 448, "browsergym_id": "56da8963-bce5-4833"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "327", "childIds": [], "backendDOMNodeId": 475, "browsergym_id": "21c1afde-d9ac-4780"}, {"nodeId": "348", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "328", "childIds": ["386"], "backendDOMNodeId": 479}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": [], "backendDOMNodeId": 480, "browsergym_id": "b0868f56-b16b-4714"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387", "388", "389", "390", "391", "392", "393", "394"], "backendDOMNodeId": 482, "browsergym_id": "4ac50467-4777-4d33"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": [], "backendDOMNodeId": 505, "browsergym_id": "19b48bbc-44fa-41f3"}, {"nodeId": "352", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "329", "childIds": ["395"], "backendDOMNodeId": 509}, {"nodeId": "353", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "329", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "9f5cbbfe-2fa8-4a3d"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "329", "childIds": ["396", "397", "398"], "backendDOMNodeId": 512, "browsergym_id": "71191ee7-7a51-42ac"}, {"nodeId": "355", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "329", "childIds": [], "backendDOMNodeId": 520, "browsergym_id": "e073f130-5593-4afd"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["399"], "backendDOMNodeId": 547, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "357", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["400", "401", "402"], "backendDOMNodeId": 552, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "333", "childIds": ["403"], "backendDOMNodeId": 562, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "359", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["404", "405"], "backendDOMNodeId": 301, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["406", "407"], "backendDOMNodeId": 319, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["408", "409"], "backendDOMNodeId": 337, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "337", "childIds": ["410", "411"], "backendDOMNodeId": 354, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["412", "413"], "backendDOMNodeId": 371, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "364", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "340", "childIds": []}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["414"], "backendDOMNodeId": 415, "browsergym_id": "75677ab0-4a6a-4823"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["415"], "backendDOMNodeId": 418, "browsergym_id": "a15189cd-ec7d-437c"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["416"], "backendDOMNodeId": 420, "browsergym_id": "88e61b45-f187-4d23"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["417"], "backendDOMNodeId": 422, "browsergym_id": "1478b0c0-c044-4ef7"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["418"], "backendDOMNodeId": 424, "browsergym_id": "9a1cadf4-031e-40d1"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["419"], "backendDOMNodeId": 426, "browsergym_id": "76394606-ac62-48dc"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["420"], "backendDOMNodeId": 428, "browsergym_id": "9dacd335-fd49-4466"}, {"nodeId": "372", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["421"], "backendDOMNodeId": 430, "browsergym_id": "0365b3c7-c0f0-4a74"}, {"nodeId": "373", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["422"], "backendDOMNodeId": 432, "browsergym_id": "de22f270-947f-4abe"}, {"nodeId": "374", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": [], "backendDOMNodeId": 440, "browsergym_id": "4cb7a784-df6a-4acd"}, {"nodeId": "375", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "344", "childIds": []}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["423"], "backendDOMNodeId": 449, "browsergym_id": "876c0aec-aeff-4149"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["424"], "backendDOMNodeId": 452, "browsergym_id": "78bb3db0-f4aa-4a5b"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["425"], "backendDOMNodeId": 454, "browsergym_id": "959a5cff-c570-4c85"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["426"], "backendDOMNodeId": 456, "browsergym_id": "bd418c66-ad76-4cc2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["427"], "backendDOMNodeId": 458, "browsergym_id": "40c48014-932f-4efa"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["428"], "backendDOMNodeId": 460, "browsergym_id": "c6a81f17-2014-404b"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["429"], "backendDOMNodeId": 462, "browsergym_id": "9438724e-f1b1-4c52"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["430"], "backendDOMNodeId": 464, "browsergym_id": "8f7ceaa6-b5ea-41f8"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": ["431"], "backendDOMNodeId": 466, "browsergym_id": "274bddde-692b-460c"}, {"nodeId": "385", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "346", "childIds": [], "backendDOMNodeId": 474, "browsergym_id": "98402675-ae63-428a"}, {"nodeId": "386", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "348", "childIds": []}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["432"], "backendDOMNodeId": 483, "browsergym_id": "e65e2d00-a235-40b5"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["433"], "backendDOMNodeId": 486, "browsergym_id": "e9ffcaa8-2e66-4b6c"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["434"], "backendDOMNodeId": 488, "browsergym_id": "991deeed-e85e-4483"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["435"], "backendDOMNodeId": 490, "browsergym_id": "7fe6b6e7-895c-4e5c"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["436"], "backendDOMNodeId": 492, "browsergym_id": "b97acb21-435d-449c"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["437"], "backendDOMNodeId": 494, "browsergym_id": "29596457-4a29-4acc"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": ["438"], "backendDOMNodeId": 496, "browsergym_id": "f3c7fe31-45ca-4dfc"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "350", "childIds": [], "backendDOMNodeId": 504, "browsergym_id": "6e345983-ffc9-44ee"}, {"nodeId": "395", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "352", "childIds": []}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["439"], "backendDOMNodeId": 513, "browsergym_id": "678fc46f-2e6f-4c88"}, {"nodeId": "397", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["440"], "backendDOMNodeId": 516, "browsergym_id": "acb52a33-edad-4eff"}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["441"], "backendDOMNodeId": 518, "browsergym_id": "d6a36752-6eb1-4b41"}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["442"], "backendDOMNodeId": 548, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "357", "childIds": ["443"], "backendDOMNodeId": 553, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "357", "childIds": ["444"], "backendDOMNodeId": 557, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "357", "childIds": ["445"], "backendDOMNodeId": 559, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "403", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "358", "childIds": ["446"], "backendDOMNodeId": 563}, {"nodeId": "446", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 563}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "403", "childIds": [], "backendDOMNodeId": 564}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "359", "childIds": ["447"], "backendDOMNodeId": 302, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "359", "childIds": ["448", "449", "450"], "backendDOMNodeId": 305, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "406", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 320, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "407", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["452", "453", "454"], "backendDOMNodeId": 323, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["455"], "backendDOMNodeId": 338, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["456", "457", "458"], "backendDOMNodeId": 341, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["459"], "backendDOMNodeId": 355, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "411", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["460", "461", "462"], "backendDOMNodeId": 358, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["463"], "backendDOMNodeId": 372, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["464", "465", "466"], "backendDOMNodeId": 375, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "365", "childIds": ["467"], "backendDOMNodeId": 416, "browsergym_id": "977e92ac-6111-4ede"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This"}}]}, "properties": [], "parentId": "366", "childIds": [], "backendDOMNodeId": 419}, {"nodeId": "416", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " tasty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " tasty breakfast"}}]}, "properties": [], "parentId": "367", "childIds": [], "backendDOMNodeId": 421}, {"nodeId": "417", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " casserole is", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " casserole is"}}]}, "properties": [], "parentId": "368", "childIds": [], "backendDOMNodeId": 423}, {"nodeId": "418", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " made with cres", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " made with cres"}}]}, "properties": [], "parentId": "369", "childIds": [], "backendDOMNodeId": 425}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "cent rolls and", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "cent rolls and"}}]}, "properties": [], "parentId": "370", "childIds": [], "backendDOMNodeId": 427}, {"nodeId": "420", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " can be prepared", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " can be prepared"}}]}, "properties": [], "parentId": "371", "childIds": [], "backendDOMNodeId": 429}, {"nodeId": "421", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " ahead of time"}}]}, "properties": [], "parentId": "372", "childIds": [], "backendDOMNodeId": 431}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "373", "childIds": ["468", "469"], "backendDOMNodeId": 433, "browsergym_id": "92f8a889-4c46-46aa"}, {"nodeId": "423", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["470"], "backendDOMNodeId": 450, "browsergym_id": "19d9b8fd-6a66-429a"}, {"nodeId": "424", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place"}}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 453}, {"nodeId": "425", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " the ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " the ingredients"}}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "426", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " in a slow cooker", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " in a slow cooker"}}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " before bed, and", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " before bed, and"}}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 459}, {"nodeId": "428", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " wake up to a", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " wake up to a"}}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 461}, {"nodeId": "429", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " healthy and satisfying", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " healthy and satisfying"}}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 463}, {"nodeId": "430", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " dish"}}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "431", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["471", "472"], "backendDOMNodeId": 467, "browsergym_id": "287738ba-dd11-4892"}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "387", "childIds": ["473"], "backendDOMNodeId": 484, "browsergym_id": "f095f932-b0da-46eb"}, {"nodeId": "433", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "434", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " up a basic o", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " up a basic o"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 489}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "melet with a few", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "melet with a few"}}]}, "properties": [], "parentId": "390", "childIds": [], "backendDOMNodeId": 491}, {"nodeId": "436", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " ingredients for", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " ingredients for"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 493}, {"nodeId": "437", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " a delicious breakfast"}}]}, "properties": [], "parentId": "392", "childIds": [], "backendDOMNodeId": 495}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "393", "childIds": ["474", "475"], "backendDOMNodeId": 497, "browsergym_id": "9c925b37-8e40-4057"}, {"nodeId": "439", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "396", "childIds": ["476"], "backendDOMNodeId": 514, "browsergym_id": "53137e8a-72df-4701"}, {"nodeId": "440", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt"}}]}, "properties": [], "parentId": "397", "childIds": [], "backendDOMNodeId": 517}, {"nodeId": "441", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ", cream, brown", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ", cream, brown"}}]}, "properties": [], "parentId": "398", "childIds": [], "backendDOMNodeId": 519}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["477"], "backendDOMNodeId": 549, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "443", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["478"], "backendDOMNodeId": 554, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "444", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "401", "childIds": [], "backendDOMNodeId": 558}, {"nodeId": "445", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "402", "childIds": [], "backendDOMNodeId": 560}, {"nodeId": "447", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["479"], "backendDOMNodeId": 303, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "448", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["480", "481"], "backendDOMNodeId": 306, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "449", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["482"], "backendDOMNodeId": 312, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "450", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["483"], "backendDOMNodeId": 314, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "406", "childIds": ["484"], "backendDOMNodeId": 321, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "452", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "407", "childIds": ["485", "486"], "backendDOMNodeId": 324, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "453", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "407", "childIds": ["487"], "backendDOMNodeId": 330, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "454", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "407", "childIds": ["488"], "backendDOMNodeId": 332, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "455", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "408", "childIds": ["489"], "backendDOMNodeId": 339, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "456", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["490", "491"], "backendDOMNodeId": 342, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "457", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["492"], "backendDOMNodeId": 347, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["493"], "backendDOMNodeId": 349, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "410", "childIds": ["494"], "backendDOMNodeId": 356, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "411", "childIds": ["495", "496"], "backendDOMNodeId": 359, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "411", "childIds": ["497"], "backendDOMNodeId": 364, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "411", "childIds": ["498"], "backendDOMNodeId": 366, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "412", "childIds": ["499"], "backendDOMNodeId": 373, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["500", "501"], "backendDOMNodeId": 376, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["502"], "backendDOMNodeId": 381, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "466", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["503"], "backendDOMNodeId": 383, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "467", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "414", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "422", "childIds": ["504"], "backendDOMNodeId": 434, "browsergym_id": "9f1af41e-bf1f-4512"}, {"nodeId": "469", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "422", "childIds": [], "backendDOMNodeId": 439}, {"nodeId": "470", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "423", "childIds": [], "backendDOMNodeId": 451}, {"nodeId": "471", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "431", "childIds": ["505"], "backendDOMNodeId": 468, "browsergym_id": "461c14bb-9e54-45f9"}, {"nodeId": "472", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "431", "childIds": [], "backendDOMNodeId": 473}, {"nodeId": "473", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "432", "childIds": [], "backendDOMNodeId": 485}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "438", "childIds": ["506"], "backendDOMNodeId": 498, "browsergym_id": "0afda04f-b479-4f02"}, {"nodeId": "475", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "438", "childIds": [], "backendDOMNodeId": 503}, {"nodeId": "476", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "439", "childIds": [], "backendDOMNodeId": 515}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "442", "childIds": ["507"], "backendDOMNodeId": 550, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "443", "childIds": ["508"], "backendDOMNodeId": 555, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "479", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "447", "childIds": [], "backendDOMNodeId": 304}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "448", "childIds": ["509"], "backendDOMNodeId": 307, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "481", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "448", "childIds": ["510"], "backendDOMNodeId": 310, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "482", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "449", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "483", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "450", "childIds": [], "backendDOMNodeId": 315}, {"nodeId": "484", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "451", "childIds": [], "backendDOMNodeId": 322}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "452", "childIds": ["511"], "backendDOMNodeId": 325, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "486", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "452", "childIds": ["512"], "backendDOMNodeId": 328, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "487", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "453", "childIds": [], "backendDOMNodeId": 331}, {"nodeId": "488", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "454", "childIds": [], "backendDOMNodeId": 333}, {"nodeId": "489", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "455", "childIds": [], "backendDOMNodeId": 340}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "456", "childIds": ["513"], "backendDOMNodeId": 343, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "491", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "456", "childIds": ["514"], "backendDOMNodeId": 345, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "492", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "457", "childIds": [], "backendDOMNodeId": 348}, {"nodeId": "493", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "458", "childIds": [], "backendDOMNodeId": 350}, {"nodeId": "494", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "459", "childIds": [], "backendDOMNodeId": 357}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "460", "childIds": ["515"], "backendDOMNodeId": 360, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "496", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "460", "childIds": ["516"], "backendDOMNodeId": 362, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "497", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "461", "childIds": [], "backendDOMNodeId": 365}, {"nodeId": "498", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "462", "childIds": [], "backendDOMNodeId": 367}, {"nodeId": "499", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "463", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["517"], "backendDOMNodeId": 377, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "501", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["518"], "backendDOMNodeId": 379, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "502", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "465", "childIds": [], "backendDOMNodeId": 382}, {"nodeId": "503", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "466", "childIds": [], "backendDOMNodeId": 384}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "468", "childIds": ["519"], "backendDOMNodeId": 435, "browsergym_id": "963e53ed-aa6b-459d"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "471", "childIds": ["520"], "backendDOMNodeId": 469, "browsergym_id": "f3cccfb7-6a98-4da5"}, {"nodeId": "506", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["521"], "backendDOMNodeId": 499, "browsergym_id": "26aa487b-47c1-4ed7"}, {"nodeId": "507", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "477", "childIds": [], "backendDOMNodeId": 551}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 556, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "480", "childIds": ["522"], "backendDOMNodeId": 308, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "510", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "481", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "511", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "485", "childIds": ["523"], "backendDOMNodeId": 326, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "512", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "486", "childIds": [], "backendDOMNodeId": 329}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "490", "childIds": ["524"], "backendDOMNodeId": 344, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "514", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "491", "childIds": [], "backendDOMNodeId": 346}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "495", "childIds": ["525"], "backendDOMNodeId": 361, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "516", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "496", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "500", "childIds": ["526"], "backendDOMNodeId": 378, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "518", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "501", "childIds": [], "backendDOMNodeId": 380}, {"nodeId": "519", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["527"], "backendDOMNodeId": 436, "browsergym_id": "2da264f7-2d71-44fb"}, {"nodeId": "520", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "505", "childIds": ["528"], "backendDOMNodeId": 470, "browsergym_id": "de79df75-719a-4c6d"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "506", "childIds": ["529"], "backendDOMNodeId": 500, "browsergym_id": "eb73973f-b08d-401f"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "509", "childIds": [], "backendDOMNodeId": 309, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "511", "childIds": [], "backendDOMNodeId": 327, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 7, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "525", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "515", "childIds": [], "backendDOMNodeId": 8, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 9, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "519", "childIds": ["530"], "backendDOMNodeId": 437, "browsergym_id": "60e8eee4-eaf8-455b"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "520", "childIds": ["531"], "backendDOMNodeId": 471, "browsergym_id": "22e0fde9-e9f8-4f86"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["532"], "backendDOMNodeId": 501, "browsergym_id": "1a38b8c9-f54e-46fe"}, {"nodeId": "530", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "527", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "531", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "528", "childIds": [], "backendDOMNodeId": 472}, {"nodeId": "532", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "529", "childIds": [], "backendDOMNodeId": 502}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-20-0.json b/demonstrations/ieckqwf/axtrees/page-20-0.json new file mode 100644 index 0000000000000000000000000000000000000000..a38c2ae4946a18dcaab2c3c28b70680cc8d14d59 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-20-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "2793A2893B597C97F0DBA81A174255CD"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 17, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 23, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 24, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 18, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 19, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 20, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 21, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 13, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 12, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 3, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 4, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 5, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 6, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 7, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 8, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 9, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 10, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 11, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 25, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 670, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 442, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 445, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 668, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 22, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 671, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 443}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 447, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 469, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 491, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 513, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 535, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 557, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 579, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 601, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 623, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 645, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 669}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 448}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 449, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 451, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 470}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 471, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 473, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 492}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 493, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 495, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 514}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 515, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 517, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 536}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 537, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 539, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 558}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 559, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 561, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 580}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 581, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 583, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 602}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 603, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 605, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 624}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 625, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 627, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 646}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 647, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 649, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 14, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 15, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 16, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 452, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 455, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 457, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 465, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 474, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 477, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 479, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 487, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 496, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 499, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 501, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 509, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 518, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 521, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 523, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 531, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 540, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 543, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 545, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 553, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 562, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 565, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 567, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 575, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 584, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 587, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 589, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 597, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 606, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 609, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 611, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 619, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 628, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 631, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 633, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 641, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 650, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 653, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 655, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 663, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 453, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 456}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 458, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 475, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 478}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 480, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 497, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 500}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 502, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 519, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 522}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 524, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 541, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 544}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 546, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 563, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 566}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 568, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 585, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 588}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 590, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 607, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 610}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 612, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 629, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 632}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 634, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 651, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 654}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 656, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 454}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 459, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 476}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 481, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 498}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 503, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 520}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 525, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 542}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 547, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 564}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 569, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 586}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 591, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 608}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 613, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 630}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 635, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 652}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 657, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 662}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 460, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 482, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 504, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 526, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 548, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 570, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 592, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 614, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 636, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 658, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 461, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 483, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 505, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 527, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 549, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 571, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 593, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 615, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 637, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 659, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 462, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 484, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 506, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 528, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 550, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 572, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 594, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 616, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 638, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 660, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 463}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 485}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 507}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 529}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 551}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 573}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 595}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 617}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 639}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 661}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-25-0.json b/demonstrations/ieckqwf/axtrees/page-25-0.json new file mode 100644 index 0000000000000000000000000000000000000000..290a468aa0fbf319374c9b5b6b887a7c12530f6f --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-25-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "AB1702682C4286E1D8DEC65D68664AE3"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 24}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 100, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 101, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 102, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 103, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 104, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 18, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 105, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 214, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 106, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 215, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 107, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 216, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 108, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 217, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 109, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 175, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 218, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 295, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 110, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 131, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 141, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 174, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 176, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 188, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 198, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 219, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 19, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 20, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 21, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 22, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 111, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 132, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 142, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 150, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 158, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 166, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 177, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 180, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 182, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 189, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 199, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 206, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 210, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 220, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 237, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 258, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 263, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 14, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 112, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 133, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 143, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 151, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 159, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 167, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 178, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 183, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 190, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 200, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 207, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 211, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 221, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 238, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 252, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 259, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 264, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 270, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 113, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 134, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 136, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 144, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 152, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 160, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 168, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 179}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 184, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 191, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 194, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 201, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 208}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 208}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 212}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 212}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 213}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 222, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 229, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 239, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 253, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 260, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 265, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 271, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 288, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 114, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 128, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 135}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 137, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 139, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 145, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 153, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 161, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 169, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 185, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 192, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 195, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 202}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 202}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 203}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 204, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 223, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 230, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 240, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 254}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 254}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 255}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 256, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 261, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 266, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 272, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 281, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 289, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 115, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 129, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 138}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 146}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 146}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 147}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 148, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 154}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 154}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 155}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 156, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 162}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 162}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 163}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 164, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 170}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 170}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 171}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 172, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 186, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 193, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 196, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 224, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 227, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 231, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 241, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 242, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 257}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 262}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 267, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 273, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 278, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 282, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 290, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 13, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 116, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 130}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 187}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 197}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 225, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 228}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 232, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 235, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 243, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 268}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 268}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 269}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 274, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 279}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 279}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 280}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 283, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 291}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 291}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 292}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 293, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 4, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 117, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 118, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 233}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 233}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 234}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 236}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 275, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 284}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 284}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 285}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 286, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 294}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 120, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 276, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 287}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 5, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 6, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 7, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 8, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 9, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 10, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 11, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 12, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 277}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 23, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 15, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 16, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 17, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-28-0.json b/demonstrations/ieckqwf/axtrees/page-28-0.json new file mode 100644 index 0000000000000000000000000000000000000000..a63ef273eacc7560406839a75685f39946d4a065 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-28-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "CCBC4679C2530BCCD2FF8B6DEB3DAE12"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 20, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 4, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 5, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 21, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 22, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 23, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 24, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 16, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 15, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 6, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 7, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 8, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 9, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 10, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 11, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 12, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 13, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 14, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 25, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 17, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 18, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 19, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-32-0.json b/demonstrations/ieckqwf/axtrees/page-32-0.json new file mode 100644 index 0000000000000000000000000000000000000000..783fa65bf2a5f0d35aabbc924cf87b4cdcedc0ac --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-32-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "C5B9EE5EACCE526D44987069F6213557"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 24}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 100, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 101, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 102, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 103, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 104, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 18, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 105, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 214, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 106, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 215, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 107, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 216, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 108, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 217, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 109, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 175, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 218, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 295, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 110, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 131, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 141, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 174, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 176, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 188, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 198, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 219, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 19, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 20, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 21, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 22, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 111, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 132, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 142, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 150, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 158, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 166, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 177, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 180, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 182, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 189, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 199, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 206, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 210, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 220, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 237, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 258, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 263, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 14, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 112, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 133, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 143, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 151, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 159, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 167, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 178, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 183, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 190, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 200, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 207, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 211, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 221, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 238, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 252, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 259, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 264, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 270, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 113, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 134, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 136, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 144, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 152, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 160, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 168, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 179}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 184, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 191, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 194, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 201, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 208}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 208}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 212}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 212}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 213}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 222, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 229, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 239, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 253, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 260, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 265, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 271, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 288, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 114, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 128, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 135}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 137, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 139, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 145, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 153, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 161, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 169, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 185, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 192, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 195, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 202}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 202}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 203}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 204, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 223, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 230, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 240, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 254}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 254}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 255}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 256, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 261, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 266, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 272, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 281, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 289, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 115, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 129, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 138}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 146}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 146}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 147}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 148, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 154}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 154}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 155}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 156, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 162}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 162}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 163}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 164, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 170}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 170}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 171}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 172, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 186, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 193, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 196, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 224, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 227, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 231, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 241, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 242, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 257}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 262}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 267, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 273, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 278, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 282, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 290, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 13, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 116, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 130}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 187}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 197}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 225, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 228}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 232, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 235, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 243, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 268}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 268}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 269}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 274, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 279}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 279}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 280}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 283, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 291}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 291}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 292}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 293, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 4, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 117, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 118, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 233}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 233}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 234}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 236}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 275, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 284}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 284}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 285}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 286, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 294}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 120, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 276, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 287}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 5, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 6, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 7, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 8, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 9, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 10, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 11, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 12, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 277}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 23, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 15, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 16, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 17, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-34-0.json b/demonstrations/ieckqwf/axtrees/page-34-0.json new file mode 100644 index 0000000000000000000000000000000000000000..119a328d7b1b412bcfc4adfd319c62844e616450 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-34-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "62668EDCDC0E3C25F66EBC86260AF7A8"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 17, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 23, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 24, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 18, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 19, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 20, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 21, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 13, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 12, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 3, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 4, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 5, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 6, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 7, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 8, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 9, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 10, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 11, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 25, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 670, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 442, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 445, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 668, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 22, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 671, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 443}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 447, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 469, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 491, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 513, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 535, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 557, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 579, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 601, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 623, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 645, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 669}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 448}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 449, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 451, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 470}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 471, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 473, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 492}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 493, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 495, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 514}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 515, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 517, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 536}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 537, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 539, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 558}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 559, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 561, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 580}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 581, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 583, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 602}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 603, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 605, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 624}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 625, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 627, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 646}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 647, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 649, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 14, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 15, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 16, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 452, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 455, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 457, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 465, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 474, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 477, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 479, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 487, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 496, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 499, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 501, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 509, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 518, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 521, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 523, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 531, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 540, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 543, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 545, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 553, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 562, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 565, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 567, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 575, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 584, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 587, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 589, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 597, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 606, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 609, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 611, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 619, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 628, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 631, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 633, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 641, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 650, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 653, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 655, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 663, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 453, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 456}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 458, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 475, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 478}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 480, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 497, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 500}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 502, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 519, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 522}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 524, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 541, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 544}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 546, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 563, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 566}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 568, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 585, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 588}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 590, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 607, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 610}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 612, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 629, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 632}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 634, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 651, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 654}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 656, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 454}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 459, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 476}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 481, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 498}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 503, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 520}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 525, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 542}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 547, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 564}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 569, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 586}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 591, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 608}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 613, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 630}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 635, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 652}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 657, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 662}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 460, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 482, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 504, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 526, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 548, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 570, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 592, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 614, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 636, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 658, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 461, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 483, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 505, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 527, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 549, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 571, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 593, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 615, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 637, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 659, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 462, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 484, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 506, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 528, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 550, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 572, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 594, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 616, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 638, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 660, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 463}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 485}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 507}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 529}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 551}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 573}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 595}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 617}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 639}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 661}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-35-0.json b/demonstrations/ieckqwf/axtrees/page-35-0.json new file mode 100644 index 0000000000000000000000000000000000000000..6d64d1a339694857590830af01e335a29feeee77 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-35-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "D4B65C6F5A902F73E26B4D5CC7E05CC5"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 17, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 23, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 24, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 18, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 19, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 20, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 21, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 13, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 12, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 3, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 4, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 5, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 6, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 7, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 8, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 9, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 10, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 11, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 25, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 670, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 442, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 445, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 668, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 22, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 671, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 443}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 447, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 469, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 491, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 513, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 535, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 557, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 579, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 601, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 623, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 645, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 669}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 448}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 449, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 451, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 470}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 471, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 473, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 492}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 493, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 495, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 514}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 515, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 517, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 536}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 537, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 539, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 558}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 559, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 561, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 580}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 581, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 583, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 602}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 603, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 605, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 624}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 625, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 627, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 646}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 647, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 649, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 14, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 15, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 16, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 452, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 455, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 457, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 465, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 474, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 477, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 479, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 487, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 496, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 499, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 501, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 509, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 518, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 521, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 523, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 531, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 540, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 543, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 545, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 553, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 562, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 565, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 567, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 575, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 584, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 587, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 589, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 597, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 606, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 609, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 611, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 619, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 628, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 631, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 633, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 641, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 650, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 653, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 655, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 663, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 453, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 456}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 458, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 475, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 478}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 480, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 497, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 500}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 502, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 519, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 522}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 524, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 541, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 544}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 546, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 563, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 566}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 568, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 585, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 588}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 590, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 607, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 610}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 612, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 629, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 632}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 634, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 651, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 654}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 656, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 454}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 459, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 476}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 481, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 498}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 503, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 520}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 525, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 542}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 547, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 564}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 569, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 586}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 591, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 608}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 613, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 630}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 635, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 652}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 657, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 662}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 460, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 482, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 504, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 526, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 548, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 570, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 592, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 614, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 636, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 658, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 461, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 483, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 505, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 527, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 549, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 571, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 593, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 615, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 637, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 659, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 462, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 484, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 506, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 528, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 550, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 572, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 594, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 616, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 638, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 660, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 463}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 485}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 507}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 529}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 551}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 573}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 595}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 617}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 639}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 661}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-37-0.json b/demonstrations/ieckqwf/axtrees/page-37-0.json new file mode 100644 index 0000000000000000000000000000000000000000..49193393ce9c83613cee5434d0a571a79bf1bfc4 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-37-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "7DE7C6605FE7C1C9963EAA67910F2ABA"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 20, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 4, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 5, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 21, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 22, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 23, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 24, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 16, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 15, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 6, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 7, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 8, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 9, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 10, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 11, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 12, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 13, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 14, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 25, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 17, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 18, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 19, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-42-0.json b/demonstrations/ieckqwf/axtrees/page-42-0.json new file mode 100644 index 0000000000000000000000000000000000000000..eab3c89ef70053da542939bee0e73ffe2a950613 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-42-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "5369A76ADDC8DA3ECDF1F0EC3B8C0A6D"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 26}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 102, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 103, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 104, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 105, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 106, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 19, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 107, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 3, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 108, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 216, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 109, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 217, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 110, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 218, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 111, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 177, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 219, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 4, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 112, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 133, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 143, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 176, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 178, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 190, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 200, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 220, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 20, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 21, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 22, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 23, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 113, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 134, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 144, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 152, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 160, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 168, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 179, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 182, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 184, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 191, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 201, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 208, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 212, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 221, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 238, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 259, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 264, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 15, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 114, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 135, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 145, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 153, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 161, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 169, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 180, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 185, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 192, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 202, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 209, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 213, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 222, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 239, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 253, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 260, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 265, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 271, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 115, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 136, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 138, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 146, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 154, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 162, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 170, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 186, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 193, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 196, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 203, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 210}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 210}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 211}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 214}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 223, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 230, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 240, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 254, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 261, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 266, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 272, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 289, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 116, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 130, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 137}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 139, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 141, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 147, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 155, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 163, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 171, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 187, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 194, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 197, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 204}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 204}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 206, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 224, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 231, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 241, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 255}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 255}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 256}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 257, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 262, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 267, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 273, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 282, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 290, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 117, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 131, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 148}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 148}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 150, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 156}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 156}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 158, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 164}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 164}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 166, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 172}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 172}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 174, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 188, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 195, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 198, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 225, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 228, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 232, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 242, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 243, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 263}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 268, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 274, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 279, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 283, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 291, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 14, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 118, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 132}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 189}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 199}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 226, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 229}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 233, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 236, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 269}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 269}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 270}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 275, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 280}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 280}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 281}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 284, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 292}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 292}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 293}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 294, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 5, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 120, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 234}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 234}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 235}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 276, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 285}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 285}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 287, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 277, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 6, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 7, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 8, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 9, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 10, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 11, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 12, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 13, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 278}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 25, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 670, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 442, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 445, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 668, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 24, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 671, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 443}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 447, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 469, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 491, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 513, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 535, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 557, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 579, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 601, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 623, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 645, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 669}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 448}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 449, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 451, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 470}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 471, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 473, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 492}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 493, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 495, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 514}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 515, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 517, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 536}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 537, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 539, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 558}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 559, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 561, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 580}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 581, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 583, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 602}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 603, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 605, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 624}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 625, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 627, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 646}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 647, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 649, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 16, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 17, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 18, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 452, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 455, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 457, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 465, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 474, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 477, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 479, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 487, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 496, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 499, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 501, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 509, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 518, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 521, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 523, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 531, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 540, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 543, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 545, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 553, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 562, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 565, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 567, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 575, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 584, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 587, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 589, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 597, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 606, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 609, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 611, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 619, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 628, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 631, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 633, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 641, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 650, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 653, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 655, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 663, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 453, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 456}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 458, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 475, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 478}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 480, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 497, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 500}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 502, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 519, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 522}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 524, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 541, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 544}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 546, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 563, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 566}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 568, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 585, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 588}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 590, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 607, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 610}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 612, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 629, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 632}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 634, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 651, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 654}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 656, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 454}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 459, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 476}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 481, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 498}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 503, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 520}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 525, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 542}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 547, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 564}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 569, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 586}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 591, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 608}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 613, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 630}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 635, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 652}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 657, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 662}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 460, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 482, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 504, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 526, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 548, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 570, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 592, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 614, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 636, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 658, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 461, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 483, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 505, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 527, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 549, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 571, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 593, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 615, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 637, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 659, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 462, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 484, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 506, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 528, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 550, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 572, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 594, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 616, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 638, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 660, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 463}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 485}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 507}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 529}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 551}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 573}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 595}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 617}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 639}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 661}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-44-0.json b/demonstrations/ieckqwf/axtrees/page-44-0.json new file mode 100644 index 0000000000000000000000000000000000000000..7325fb41b324292f1785ea00aea0c99dc198c597 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-44-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "B57DBEF4E79D69B72065A818EE938D75"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 24}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 100, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 101, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 102, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 103, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 104, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 18, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 105, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 214, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 106, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 215, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 107, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 216, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 108, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 217, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 109, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 175, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 218, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 295, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 110, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 131, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 141, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 174, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 176, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 188, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 198, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 219, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 19, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 20, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 21, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 22, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 111, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 132, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 142, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 150, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 158, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 166, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 177, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 180, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 182, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 189, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 199, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 206, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 210, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 220, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 237, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 258, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 263, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 14, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 112, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 133, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 143, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 151, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 159, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 167, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 178, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 183, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 190, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 200, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 207, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 211, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 221, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 238, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 252, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 259, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 264, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 270, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 113, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 134, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 136, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 144, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 152, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 160, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 168, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 179}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 184, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 191, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 194, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 201, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 208}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 208}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 212}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 212}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 213}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 222, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 229, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 239, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 253, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 260, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 265, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 271, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 288, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 114, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 128, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 135}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 137, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 139, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 145, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 153, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 161, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 169, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 185, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 192, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 195, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 202}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 202}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 203}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 204, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 223, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 230, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 240, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 254}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 254}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 255}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 256, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 261, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 266, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 272, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 281, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 289, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 115, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 129, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 138}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 146}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 146}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 147}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 148, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 154}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 154}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 155}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 156, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 162}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 162}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 163}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 164, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 170}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 170}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 171}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 172, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 186, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 193, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 196, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 224, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 227, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 231, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 241, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 242, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 257}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 262}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 267, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 273, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 278, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 282, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 290, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 13, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 116, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 130}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 187}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 197}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 225, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 228}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 232, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 235, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 243, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 268}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 268}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 269}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 274, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 279}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 279}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 280}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 283, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 291}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 291}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 292}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 293, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 4, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 117, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 118, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 233}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 233}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 234}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 236}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 275, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 284}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 284}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 285}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 286, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 294}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 120, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 276, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 287}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 5, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 6, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 7, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 8, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 9, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 10, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 11, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 12, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 277}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 23, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 15, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 16, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 17, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-45-0.json b/demonstrations/ieckqwf/axtrees/page-45-0.json new file mode 100644 index 0000000000000000000000000000000000000000..433d40df75292aee6c3f754b6d246ba2d77595f6 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-45-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "5A4DC7260F650BA1538370D8A316D2E1"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 24}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 100, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 101, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 102, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 103, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 104, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 18, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 105, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 214, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 761, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 106, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 215, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 762, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 107, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 216, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 763, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 770, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 777, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 784, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 108, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 217, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 764, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 771, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 778, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 785, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 109, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 175, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 218, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 295, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 765, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 772, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 779, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 786, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 110, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 131, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 141, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 174, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 176, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 188, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 198, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 219, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 296, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 19, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 20, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 21, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 22, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 111, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 132, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 142, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 150, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 158, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 166, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 177, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 180, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 182, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 189, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 199, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 206, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 210, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 220, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 237, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 258, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 263, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 297, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 314, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 733, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 14, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 766}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 766}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 767}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 768, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 773}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 773}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 775, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 780}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 780}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 781}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 782, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 112, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 133, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 143, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 151, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 159, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 167, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 178, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 181}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 183, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 190, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 200, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 207, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 211, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 221, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 238, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 252, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 259, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 264, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 270, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 298, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 315, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 734, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 760, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 769}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 776}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 783}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 113, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 134, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 136, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 144, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 152, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 160, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 168, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 179}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 184, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 191, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 194, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 201, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 208}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 208}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 212}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 212}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 213}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 222, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 229, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 239, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 253, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 260, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 265, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 271, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 288, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 299, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 306, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 318, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 735, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 114, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 128, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 135}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 137, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 139, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 145, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 153, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 161, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 169, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 185, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 192, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 195, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 202}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 202}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 203}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 204, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 223, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 230, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 240, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 254}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 254}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 255}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 256, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 261, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 266, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 272, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 281, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 289, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 300, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 307, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 319, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 736, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 115, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 129, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 138}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 140}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 146}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 146}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 147}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 148, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 154}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 154}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 155}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 156, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 162}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 162}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 163}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 164, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 170}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 170}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 171}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 172, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 186, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 193, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 196, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 205}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 224, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 227, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 231, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 241, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 242, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 257}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 262}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 267, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 273, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 278, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 282, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 290, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 301, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 304, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 308, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 320, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 324, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 429, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 13, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 737, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 116, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 130}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 149}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 157}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 165}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 173}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 187}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 197}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 225, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 228}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 232, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 235, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 243, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 245, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 268}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 268}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 269}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 274, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 279}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 279}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 280}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 283, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 291}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 291}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 292}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 293, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 302, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 305}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 309, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 312, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 321, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 325, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 331, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 430, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 439, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 4, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 702, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 738, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 117, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 118, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 233}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 233}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 234}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 236}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 275, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 284}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 284}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 285}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 286, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 294}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 303, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 310}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 310}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 322, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 326, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 332, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 431, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 440, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 674, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 681, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 688, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 695, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 703, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 739, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 119, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 120, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 122, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 276, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 287}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 323}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 327}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 327}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 328}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 329, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 333, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 337, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 432, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 441, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 5, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 6, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 7, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 8, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 9, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 10, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 11, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 12, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 704, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 740, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 277}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 334, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 336, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 338, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 433, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 442, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 671, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 675, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 679}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 679}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 682, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 686}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 686}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 687}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 689, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 693}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 693}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 694}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 696, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 700}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 700}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 701}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 705, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 714, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 741, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 335, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 339, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 357, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 375, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 393, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 411, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 434, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 437, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 443, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 446, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 669, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 672, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 23, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 673, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 676, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 683, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 690, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 697, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 706, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 715, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 721, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 727, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 742, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 743, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 340, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 358, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 376, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 394, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 412, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 435}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 435}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 444}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 448, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 470, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 492, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 514, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 536, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 558, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 580, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 602, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 624, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 646, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 670}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 677, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 684, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 691, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 698, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 707, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 716, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 718, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 722, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 724, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 728, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 730, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 744, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 757, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 341, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 359, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 377, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 395, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 413, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 449}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 450, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 452, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 467, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 471}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 472, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 474, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 489, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 493}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 494, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 496, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 511, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 515}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 516, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 518, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 533, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 537}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 538, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 540, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 555, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 559}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 560, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 562, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 577, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 581}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 582, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 584, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 599, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 603}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 604, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 606, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 621, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 625}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 626, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 628, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 643, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 647}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 648, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 650, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 665, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 678}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 685}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 699}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 708, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 717}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 719}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 719}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 720}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 723}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 725}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 725}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 726}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 729}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 731}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 731}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 732}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 15, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 16, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 17, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 342, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 360, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 378, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 396, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 414, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 453, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 456, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 458, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 466, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 475, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 478, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 480, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 488, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 497, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 500, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 502, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 510, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 519, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 522, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 524, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 532, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 541, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 544, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 546, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 554, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 563, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 566, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 568, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 576, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 585, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 588, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 590, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 598, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 607, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 610, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 612, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 620, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 629, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 632, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 634, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 642, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 651, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 654, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 656, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 664, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 709, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 712, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 745, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 749, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 753, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 755, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 758}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 758}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 759}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 343, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 346, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 361, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 364, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 379, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 382, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 397, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 400, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 415, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 418, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 454, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 459, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 476, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 481, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 498, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 503, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 520, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 525, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 542, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 547, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 564, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 569, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 586, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 591, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 608, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 613, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 630, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 635, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 652, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 657, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 710}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 710}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 711}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 713}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 746, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 750, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 754}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 756}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 344, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 347, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 353, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 355, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 362, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 365, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 371, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 373, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 380, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 383, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 389, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 391, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 398, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 401, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 407, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 409, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 416, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 419, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 425, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 427, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 455}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 460, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 465}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 477}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 482, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 487}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 499}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 504, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 509}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 521}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 526, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 531}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 543}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 548, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 553}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 565}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 570, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 575}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 587}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 592, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 597}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 609}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 614, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 619}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 631}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 636, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 641}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 653}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 658, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 663}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 747, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 751, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 345}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 348, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 351, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 363}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 366, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 369, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 381}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 384, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 387, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 399}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 402, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 405, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 420, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 423, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 461, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 483, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 505, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 527, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 549, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 571, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 593, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 615, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 637, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 659, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 748}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 752, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 349, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 352}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 367, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 370}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 385, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 388}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 403, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 406}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 421, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 424}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 462, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 484, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 506, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 528, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 550, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 572, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 594, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 616, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 638, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 660, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 350, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 368, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 386, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 404, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 422, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 463, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 485, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 507, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 529, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 551, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 573, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 595, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 617, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 639, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 661, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 464}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 486}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 508}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 530}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 552}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 574}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 596}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 618}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 640}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 662}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-7-0.json b/demonstrations/ieckqwf/axtrees/page-7-0.json new file mode 100644 index 0000000000000000000000000000000000000000..fe390a7dc2ee75e7e13fe4af76280137b6433e51 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-7-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "03818DB2AD5118DC95A7DB931EEF5E50"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 28}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 104, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 105, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 797}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 797}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 799, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 819, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 106, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 800, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 820, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 107, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 801}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 821, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 824, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 108, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 22, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 822}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 823, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 109, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 5, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 762, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 110, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 218, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 763, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 792, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 111, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 219, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 764, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 771, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 778, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 785, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 112, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 220, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 765, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 772, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 779, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 786, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 113, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 179, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 221, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 6, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 766, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 773, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 780, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 787, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 114, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 135, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 145, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 178, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 180, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 192, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 202, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 222, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 298, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 23, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 24, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 25, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 26, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 115, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 136, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 146, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 154, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 162, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 170, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 181, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 184, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 186, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 193, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 203, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 210, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 214, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 223, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 240, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 261, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 266, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 299, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 316, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 734, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 18, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 767}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 767}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 768}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 769, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 774}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 774}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 775}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 776, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 781}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 781}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 782}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 783, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 788}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 788}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 789}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 790, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 116, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 137, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 147, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 155, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 163, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 171, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 182, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 185}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 187, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 194, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 204, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 211, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 215, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 224, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 241, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 255, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 262, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 267, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 273, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 300, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 317, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 735, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 761, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 770}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 777}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 784}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 791}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 117, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 138, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 140, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 148, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 156, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 164, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 172, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 183}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 188, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 195, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 198, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 205, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 212}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 212}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 213}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 216}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 216}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 217}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 225, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 232, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 242, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 256, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 263, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 268, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 274, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 291, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 301, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 308, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 318, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 319, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 320, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 736, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 118, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 132, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 139}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 141, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 143, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 149, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 157, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 165, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 173, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 189, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 196, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 199, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 206}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 206}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 207}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 208, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 226, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 233, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 243, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 257}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 257}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 259, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 264, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 269, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 275, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 284, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 292, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 302, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 309, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 321, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 737, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 119, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 133, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 142}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 144}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 150}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 150}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 151}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 152, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 158}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 158}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 159}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 160, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 166}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 166}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 167}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 168, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 174}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 174}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 175}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 176, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 190, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 197, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 200, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 227, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 230, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 234, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 244, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 245, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 260}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 265}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 270, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 276, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 281, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 285, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 293, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 303, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 306, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 310, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 322, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 326, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 431, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 17, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 738, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 120, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 134}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 153}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 161}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 169}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 177}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 191}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 201}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 228, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 231}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 235, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 238, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 246, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 247, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 248, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 249, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 250, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 251, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 252, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 253, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 254, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 271}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 271}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 272}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 277, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 282}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 282}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 283}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 286, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 294}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 294}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 295}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 296, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 304, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 307}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 311, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 314, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 323, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 327, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 333, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 432, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 441, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 8, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 703, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 739, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 121, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 122, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 229, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 236}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 236}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 237}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 239}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 278, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 287}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 287}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 288}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 289, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 297}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 305, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 312}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 312}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 313}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 315}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 324, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 328, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 334, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 433, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 442, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 675, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 682, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 689, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 696, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 704, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 740, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 123, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 124, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 125, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 126, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 127, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 128, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 129, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 130, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 131, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 279, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 290}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 325}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 329}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 329}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 330}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 331, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 335, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 339, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 434, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 443, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 9, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 10, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 11, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 12, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 13, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 14, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 15, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 16, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 705, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 741, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 280}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 332}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 336, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 338, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 340, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 435, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 444, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 673, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 676, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 680}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 680}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 681}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 683, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 687}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 687}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 688}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 690, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 694}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 694}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 695}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 697, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 701}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 701}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 702}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 706, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 715, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 742, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 337, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 341, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 359, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 377, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 395, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 413, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 436, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 439, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 445, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 448, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 671, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 7, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 27, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 674, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 677, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 684, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 691, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 698, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 707, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 716, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 722, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 728, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 743, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 744, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 342, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 360, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 378, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 396, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 414, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 437}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 437}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 440}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 446}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 450, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 472, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 494, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 516, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 538, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 560, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 582, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 604, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 626, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 648, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 672}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 678, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 685, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 692, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 699, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 708, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 717, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 719, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 723, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 725, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 729, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 731, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 828}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 745, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 758, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 343, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 361, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 379, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 397, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 415, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 451}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 452, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 454, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 469, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 473}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 474, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 476, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 491, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 495}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 496, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 498, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 513, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 517}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 518, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 520, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 535, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 539}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 540, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 542, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 557, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 561}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 562, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 564, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 579, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 583}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 584, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 586, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 601, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 605}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 606, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 608, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 623, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 627}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 628, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 630, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 645, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 649}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 650, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 652, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 667, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 679}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 686}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 693}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 700}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 709, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 718}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 720}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 720}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 721}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 724}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 726}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 726}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 727}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 730}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 732}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 732}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 733}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 19, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 20, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 21, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 344, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 362, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 380, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 398, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 416, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 455, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 458, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 460, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 468, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 477, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 480, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 482, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 490, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 499, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 502, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 504, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 512, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 521, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 524, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 526, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 534, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 543, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 546, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 548, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 556, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 565, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 568, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 570, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 578, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 587, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 590, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 592, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 600, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 609, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 612, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 614, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 622, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 631, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 634, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 636, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 644, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 653, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 656, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 658, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 666, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 710, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 713, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 746, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 750, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 754, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 756, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 759}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 759}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 760}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 345, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 348, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 363, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 366, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 381, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 384, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 399, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 402, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 417, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 420, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 456, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 459}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 461, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 478, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 481}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 483, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 500, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 503}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 505, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 522, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 525}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 527, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 544, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 547}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 549, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 566, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 569}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 571, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 588, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 591}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 593, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 610, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 613}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 615, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 632, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 635}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 637, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 654, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 657}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 659, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 711}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 711}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 712}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 714}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 747, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 751, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 755}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 757}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 346, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 349, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 355, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 357, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 364, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 367, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 373, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 375, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 382, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 385, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 391, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 393, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 400, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 403, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 409, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 411, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 418, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 421, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 427, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 429, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 457}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 462, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 467}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 479}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 484, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 489}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 501}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 506, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 511}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 523}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 528, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 533}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 545}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 550, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 555}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 567}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 572, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 577}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 589}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 594, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 599}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 611}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 616, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 621}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 633}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 638, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 643}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 655}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 660, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 665}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 748, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 752, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 347}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 350, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 353, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 356}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 358}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 365}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 368, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 371, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 374}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 376}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 383}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 386, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 389, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 392}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 394}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 401}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 404, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 407, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 410}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 412}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 419}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 422, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 425, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 428}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 430}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 463, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 485, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 507, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 529, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 551, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 573, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 595, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 617, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 639, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 661, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 749}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 753, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 351, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 354}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 369, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 372}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 387, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 390}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 405, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 408}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 423, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 426}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 464, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 486, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 508, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 530, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 552, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 574, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 596, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 618, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 640, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 662, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 352, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 370, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 388, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 406, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 424, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 465, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 487, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 509, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 531, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 553, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 575, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 597, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 619, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 641, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 663, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 466}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 488}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 510}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 532}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 554}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 576}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 598}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 620}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 642}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 664}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/axtrees/page-9-0.json b/demonstrations/ieckqwf/axtrees/page-9-0.json new file mode 100644 index 0000000000000000000000000000000000000000..887b158404253d8b6a56632715f718be2bc5a7d7 --- /dev/null +++ b/demonstrations/ieckqwf/axtrees/page-9-0.json @@ -0,0 +1 @@ +{"nodes": [{"nodeId": "1", "ignored": false, "role": {"type": "internalRole", "value": "RootWebArea"}, "chromeRole": {"type": "internalRole", "value": 144}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "aria-label", "superseded": true}, {"type": "relatedElement", "value": {"type": "computedString", "value": "Perplexity AI"}, "nativeSource": "title"}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}], "childIds": ["2"], "backendDOMNodeId": 1, "frameId": "117756C4164AF9036785CA92E818D86A"}, {"nodeId": "2", "ignored": true, "ignoredReasons": [{"name": "uninteresting", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "1", "childIds": ["3"], "backendDOMNodeId": 5}, {"nodeId": "3", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "2", "childIds": ["4", "5", "6", "7"], "backendDOMNodeId": 81, "browsergym_id": "ff27f266-dc2e-4151"}, {"nodeId": "4", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["8"], "backendDOMNodeId": 82, "browsergym_id": "ddbf4ca9-ff11-49fd"}, {"nodeId": "5", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "3", "childIds": ["9"], "backendDOMNodeId": 796}, {"nodeId": "9", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 796}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "5", "childIds": [], "backendDOMNodeId": 825}, {"nodeId": "6", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["10"], "backendDOMNodeId": 798, "browsergym_id": "ef182e6f-bc76-4e95"}, {"nodeId": "7", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "3", "childIds": ["11"], "backendDOMNodeId": 818, "browsergym_id": "98a1fb43-b26a-473d"}, {"nodeId": "8", "ignored": false, "role": {"type": "role", "value": "main"}, "chromeRole": {"type": "internalRole", "value": 118}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "4", "childIds": ["12"], "backendDOMNodeId": 83, "browsergym_id": "391f09cb-5e0a-4e5d"}, {"nodeId": "10", "ignored": false, "role": {"type": "role", "value": "alert"}, "chromeRole": {"type": "internalRole", "value": 2}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "live", "value": {"type": "token", "value": "assertive"}}, {"name": "atomic", "value": {"type": "boolean", "value": true}}, {"name": "relevant", "value": {"type": "tokenList", "value": "additions text"}}], "parentId": "6", "childIds": ["13"], "backendDOMNodeId": 799, "browsergym_id": "3d2da39e-6f93-46c2"}, {"nodeId": "11", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "7", "childIds": ["14", "15"], "backendDOMNodeId": 819, "browsergym_id": "97ea925f-3079-4d47"}, {"nodeId": "12", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "8", "childIds": ["16", "17"], "backendDOMNodeId": 84, "browsergym_id": "5a04f383-796a-4127"}, {"nodeId": "13", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity AI", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity AI"}}]}, "properties": [], "parentId": "10", "childIds": [], "backendDOMNodeId": 800}, {"nodeId": "14", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["18", "19"], "backendDOMNodeId": 820, "browsergym_id": "6e93f876-ce11-4c7d"}, {"nodeId": "15", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "11", "childIds": ["20"], "backendDOMNodeId": 823, "browsergym_id": "30ef8b38-b43e-43dd"}, {"nodeId": "16", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["21", "22"], "backendDOMNodeId": 85, "browsergym_id": "996d6026-4ca0-47d3"}, {"nodeId": "17", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "12", "childIds": ["23"], "backendDOMNodeId": 757, "browsergym_id": "b2f3197f-6203-4124"}, {"nodeId": "18", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "14", "childIds": [], "backendDOMNodeId": 821}, {"nodeId": "19", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "14", "childIds": [], "backendDOMNodeId": 822, "browsergym_id": "da353bc4-69f8-47aa"}, {"nodeId": "20", "ignored": true, "ignoredReasons": [{"name": "notRendered", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "15", "childIds": [], "backendDOMNodeId": 824}, {"nodeId": "21", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["24"], "backendDOMNodeId": 86, "browsergym_id": "af0a8880-ad2e-472e"}, {"nodeId": "22", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "16", "childIds": ["25"], "backendDOMNodeId": 195, "browsergym_id": "596dd1c5-50b7-4dab"}, {"nodeId": "23", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "17", "childIds": ["26", "27"], "backendDOMNodeId": 758, "browsergym_id": "c9f80d24-bbcf-4278"}, {"nodeId": "24", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "21", "childIds": ["28"], "backendDOMNodeId": 87, "browsergym_id": "caf22395-5bde-4e91"}, {"nodeId": "25", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "22", "childIds": ["29"], "backendDOMNodeId": 196, "browsergym_id": "99a62f96-6364-402f"}, {"nodeId": "26", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": ["30", "31", "32", "33"], "backendDOMNodeId": 759, "browsergym_id": "01f4d9a2-9891-4b00"}, {"nodeId": "27", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "23", "childIds": [], "backendDOMNodeId": 791, "browsergym_id": "3d56b7b3-4f36-4b31"}, {"nodeId": "28", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "24", "childIds": ["34"], "backendDOMNodeId": 88, "browsergym_id": "88e8b01b-41f2-4c04"}, {"nodeId": "29", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "25", "childIds": ["35"], "backendDOMNodeId": 197, "browsergym_id": "2edf84d2-6e79-4ec2"}, {"nodeId": "30", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["36"], "backendDOMNodeId": 760, "browsergym_id": "c293cbca-26f4-4934"}, {"nodeId": "31", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["37"], "backendDOMNodeId": 767, "browsergym_id": "277354ee-ef61-4823"}, {"nodeId": "32", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["38"], "backendDOMNodeId": 775, "browsergym_id": "fed65204-c3b2-46f6"}, {"nodeId": "33", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "26", "childIds": ["39"], "backendDOMNodeId": 783, "browsergym_id": "b0163080-c15b-421d"}, {"nodeId": "34", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "28", "childIds": ["40", "41"], "backendDOMNodeId": 89, "browsergym_id": "c74194a8-4f3b-4d9e"}, {"nodeId": "35", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "29", "childIds": ["42", "43"], "backendDOMNodeId": 198, "browsergym_id": "196f9843-9577-4c93"}, {"nodeId": "36", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "30", "childIds": ["44"], "backendDOMNodeId": 761, "browsergym_id": "5626b5a7-7942-4d89"}, {"nodeId": "37", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "31", "childIds": ["45"], "backendDOMNodeId": 768, "browsergym_id": "a14a6eb0-8213-4994"}, {"nodeId": "38", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "32", "childIds": ["46"], "backendDOMNodeId": 776, "browsergym_id": "d57ffa09-b0e0-47fb"}, {"nodeId": "39", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "33", "childIds": ["47"], "backendDOMNodeId": 784, "browsergym_id": "7800c583-f88f-41a5"}, {"nodeId": "40", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["48", "49", "50", "51"], "backendDOMNodeId": 90, "browsergym_id": "037acfc1-735d-4416"}, {"nodeId": "41", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "34", "childIds": ["52", "53", "54"], "backendDOMNodeId": 156, "browsergym_id": "f287a34f-2ab5-42a3"}, {"nodeId": "42", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["55"], "backendDOMNodeId": 199, "browsergym_id": "0293ec9c-ad75-43fd"}, {"nodeId": "43", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "35", "childIds": ["56"], "backendDOMNodeId": 276, "browsergym_id": "59b3bca9-16ea-42a2"}, {"nodeId": "44", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "36", "childIds": ["57"], "backendDOMNodeId": 762, "browsergym_id": "c29cb7e2-9119-47dd"}, {"nodeId": "45", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "37", "childIds": ["58"], "backendDOMNodeId": 769, "browsergym_id": "23dc3d59-bd52-4cc1"}, {"nodeId": "46", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "38", "childIds": ["59"], "backendDOMNodeId": 777, "browsergym_id": "62c708cd-32bc-428a"}, {"nodeId": "47", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "39", "childIds": ["60"], "backendDOMNodeId": 785, "browsergym_id": "804a7704-8fed-4cf3"}, {"nodeId": "48", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["61"], "backendDOMNodeId": 91, "browsergym_id": "70dd8b20-52e5-4471"}, {"nodeId": "49", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["62"], "backendDOMNodeId": 112, "browsergym_id": "17ec846e-d70c-4e39"}, {"nodeId": "50", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": ["63", "64", "65", "66"], "backendDOMNodeId": 122, "browsergym_id": "609d0ff9-865e-4a70"}, {"nodeId": "51", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "40", "childIds": [], "backendDOMNodeId": 155, "browsergym_id": "ed75583c-8e71-470c"}, {"nodeId": "52", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["67", "68", "69"], "backendDOMNodeId": 157, "browsergym_id": "36c6155e-33ec-4206"}, {"nodeId": "53", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "User avatar webtasksnavigator8343", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "User avatar webtasksnavigator8343"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "41", "childIds": ["70"], "backendDOMNodeId": 169, "browsergym_id": "877f7490-65a8-4c3f"}, {"nodeId": "54", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "41", "childIds": ["71", "72", "73"], "backendDOMNodeId": 179, "browsergym_id": "45c2f266-2ce1-429f"}, {"nodeId": "55", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "42", "childIds": ["74", "75", "76", "77"], "backendDOMNodeId": 200, "browsergym_id": "a63dc173-70a9-49f9"}, {"nodeId": "56", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "43", "childIds": ["78", "79", "80", "81"], "backendDOMNodeId": 277, "browsergym_id": "23a07765-4b6f-4cc3"}, {"nodeId": "57", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "44", "childIds": ["82", "83"], "backendDOMNodeId": 4, "browsergym_id": "754773a2-b100-4c4e"}, {"nodeId": "58", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "45", "childIds": ["84", "85"], "backendDOMNodeId": 770, "browsergym_id": "e8cb4547-9b65-47c7"}, {"nodeId": "59", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "46", "childIds": ["86", "87"], "backendDOMNodeId": 778, "browsergym_id": "03e78672-f8b7-459b"}, {"nodeId": "60", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "47", "childIds": ["88", "89"], "backendDOMNodeId": 786, "browsergym_id": "725d1576-a722-46f6"}, {"nodeId": "61", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "48", "childIds": ["90"], "backendDOMNodeId": 92, "browsergym_id": "07ad311f-84fd-4083"}, {"nodeId": "62", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "49", "childIds": ["91"], "backendDOMNodeId": 113, "browsergym_id": "c7ec3b2b-6921-41ff"}, {"nodeId": "63", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["92"], "backendDOMNodeId": 123, "browsergym_id": "dca1a8d4-dbec-4033"}, {"nodeId": "64", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["93"], "backendDOMNodeId": 131, "browsergym_id": "fe9e82de-1de2-4fdb"}, {"nodeId": "65", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["94"], "backendDOMNodeId": 139, "browsergym_id": "04a6a87f-c546-4244"}, {"nodeId": "66", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "50", "childIds": ["95"], "backendDOMNodeId": 147, "browsergym_id": "8b5ab04f-8e77-4759"}, {"nodeId": "67", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["96"], "backendDOMNodeId": 158, "browsergym_id": "82dbb0b8-f945-4646"}, {"nodeId": "68", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["97"], "backendDOMNodeId": 161, "browsergym_id": "65824a19-eeb1-4814"}, {"nodeId": "69", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "52", "childIds": ["98"], "backendDOMNodeId": 163, "browsergym_id": "72afbc79-73e0-4b8a"}, {"nodeId": "70", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "53", "childIds": ["99"], "backendDOMNodeId": 170, "browsergym_id": "7533b88f-9836-4637"}, {"nodeId": "71", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "54", "childIds": ["100"], "backendDOMNodeId": 180, "browsergym_id": "8d1e8f4b-23fd-4bdb"}, {"nodeId": "72", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["101"], "backendDOMNodeId": 187, "browsergym_id": "12da51e3-4dae-48f9"}, {"nodeId": "73", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "54", "childIds": ["102"], "backendDOMNodeId": 191, "browsergym_id": "71eb3e93-56ed-4427"}, {"nodeId": "74", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["103"], "backendDOMNodeId": 201, "browsergym_id": "23d6f05c-5d63-45d8"}, {"nodeId": "75", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["104", "105"], "backendDOMNodeId": 218, "browsergym_id": "7270f23e-e6eb-4cc8"}, {"nodeId": "76", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["106"], "backendDOMNodeId": 239, "browsergym_id": "f2fdfe3b-4ebe-40da"}, {"nodeId": "77", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "55", "childIds": ["107", "108"], "backendDOMNodeId": 244, "browsergym_id": "8e9cc5d9-90c1-4be2"}, {"nodeId": "78", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["109"], "backendDOMNodeId": 278, "browsergym_id": "4c9deae6-9633-497f"}, {"nodeId": "79", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["110"], "backendDOMNodeId": 295, "browsergym_id": "e3c58a3b-6130-4e6c"}, {"nodeId": "80", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": [], "backendDOMNodeId": 725, "browsergym_id": "60b5aa70-ec46-4056"}, {"nodeId": "81", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "56", "childIds": ["111", "112"], "backendDOMNodeId": 726, "browsergym_id": "4d74a06b-e71a-4fb4"}, {"nodeId": "82", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "57", "childIds": ["113"], "backendDOMNodeId": 763}, {"nodeId": "113", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 763}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "82", "childIds": [], "backendDOMNodeId": 764}, {"nodeId": "83", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "57", "childIds": ["114"], "backendDOMNodeId": 765, "browsergym_id": "48dd9c76-5ecd-4e54"}, {"nodeId": "84", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "58", "childIds": ["115"], "backendDOMNodeId": 771}, {"nodeId": "115", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 771}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "84", "childIds": [], "backendDOMNodeId": 772}, {"nodeId": "85", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "58", "childIds": ["116"], "backendDOMNodeId": 773, "browsergym_id": "5705071a-997b-417d"}, {"nodeId": "86", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "59", "childIds": ["117"], "backendDOMNodeId": 779}, {"nodeId": "117", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 779}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "86", "childIds": [], "backendDOMNodeId": 780}, {"nodeId": "87", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "59", "childIds": ["118"], "backendDOMNodeId": 781, "browsergym_id": "ed9a09b8-d0b3-44c0"}, {"nodeId": "88", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "60", "childIds": ["119"], "backendDOMNodeId": 787}, {"nodeId": "119", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 787}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "88", "childIds": [], "backendDOMNodeId": 788}, {"nodeId": "89", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "60", "childIds": ["120"], "backendDOMNodeId": 789, "browsergym_id": "06d1a10e-85e7-402c"}, {"nodeId": "90", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "61", "childIds": ["121"], "backendDOMNodeId": 93, "browsergym_id": "363b8839-6c9e-4311"}, {"nodeId": "91", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "62", "childIds": ["122", "123"], "backendDOMNodeId": 114, "browsergym_id": "2bcca082-6e74-485f"}, {"nodeId": "92", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "63", "childIds": ["124"], "backendDOMNodeId": 124, "browsergym_id": "6dbb2102-0400-4a3a"}, {"nodeId": "93", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "64", "childIds": ["125"], "backendDOMNodeId": 132, "browsergym_id": "8b8a58c1-a320-418a"}, {"nodeId": "94", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "65", "childIds": ["126"], "backendDOMNodeId": 140, "browsergym_id": "8f677685-65d3-4ce4"}, {"nodeId": "95", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "66", "childIds": ["127"], "backendDOMNodeId": 148, "browsergym_id": "f5677759-44b1-4b8d"}, {"nodeId": "96", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "67", "childIds": ["128"], "backendDOMNodeId": 159, "browsergym_id": "a5615a98-483d-4172"}, {"nodeId": "97", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "More Copilot uses and GPT-4 access.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "More Copilot uses and GPT-4 access."}}]}, "properties": [], "parentId": "68", "childIds": [], "backendDOMNodeId": 162}, {"nodeId": "98", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "69", "childIds": ["129"], "backendDOMNodeId": 164, "browsergym_id": "107dd14d-95a1-4d26"}, {"nodeId": "99", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "70", "childIds": ["130", "131"], "backendDOMNodeId": 171, "browsergym_id": "ab76ccbe-7e21-4069"}, {"nodeId": "100", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Download"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "71", "childIds": ["132"], "backendDOMNodeId": 181, "browsergym_id": "8f079f1d-0c10-425b"}, {"nodeId": "101", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "72", "childIds": ["133"], "backendDOMNodeId": 188, "browsergym_id": "640434f3-ec49-4095"}, {"nodeId": "102", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "73", "childIds": ["134"], "backendDOMNodeId": 192, "browsergym_id": "6af7dae7-33b1-4ecd"}, {"nodeId": "103", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "74", "childIds": ["135", "136"], "backendDOMNodeId": 202, "browsergym_id": "179a06dd-504d-4b06"}, {"nodeId": "104", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["137"], "backendDOMNodeId": 219, "browsergym_id": "2879ae9b-7dff-4e72"}, {"nodeId": "105", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "New"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "75", "childIds": ["138"], "backendDOMNodeId": 233, "browsergym_id": "70748759-129a-477d"}, {"nodeId": "106", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "76", "childIds": ["139"], "backendDOMNodeId": 240, "browsergym_id": "a8bde6f0-c791-4ab9"}, {"nodeId": "107", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["140"], "backendDOMNodeId": 245, "browsergym_id": "b10a1eb6-94cb-4c83"}, {"nodeId": "108", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "77", "childIds": ["141", "142"], "backendDOMNodeId": 251, "browsergym_id": "51dc86ba-fd31-4ae5"}, {"nodeId": "109", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "78", "childIds": ["143", "144"], "backendDOMNodeId": 279, "browsergym_id": "b72ef0a7-2c00-47c6"}, {"nodeId": "110", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "79", "childIds": ["145", "146", "147"], "backendDOMNodeId": 296, "browsergym_id": "c8d363cd-dad7-4343"}, {"nodeId": "111", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": ["148"], "backendDOMNodeId": 727, "browsergym_id": "e371ba15-31ee-4d95"}, {"nodeId": "112", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "81", "childIds": [], "backendDOMNodeId": 756, "browsergym_id": "d8d56ac9-756f-4ca4"}, {"nodeId": "114", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "83", "childIds": [], "backendDOMNodeId": 766}, {"nodeId": "116", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "85", "childIds": [], "backendDOMNodeId": 774}, {"nodeId": "118", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "87", "childIds": [], "backendDOMNodeId": 782}, {"nodeId": "120", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "89", "childIds": [], "backendDOMNodeId": 790}, {"nodeId": "121", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "90", "childIds": ["149", "150"], "backendDOMNodeId": 94, "browsergym_id": "273b3cf4-d185-4f9c"}, {"nodeId": "122", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["151"], "backendDOMNodeId": 115, "browsergym_id": "0f76cf94-c0ba-497b"}, {"nodeId": "123", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "91", "childIds": ["152", "153"], "backendDOMNodeId": 117, "browsergym_id": "f4aae869-e399-41e3"}, {"nodeId": "124", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Home"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "92", "childIds": ["154"], "backendDOMNodeId": 125, "browsergym_id": "66a479f2-7478-4cd3"}, {"nodeId": "125", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "Discover"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "93", "childIds": ["155"], "backendDOMNodeId": 133, "browsergym_id": "7d06a2ac-b8e8-4cbb"}, {"nodeId": "126", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "94", "childIds": ["156"], "backendDOMNodeId": 141, "browsergym_id": "2d4471a3-e86d-40f1"}, {"nodeId": "127", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "95", "childIds": ["157"], "backendDOMNodeId": 149, "browsergym_id": "df7bc167-4731-4949"}, {"nodeId": "128", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Try Pro", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Try Pro"}}]}, "properties": [], "parentId": "96", "childIds": [], "backendDOMNodeId": 160}, {"nodeId": "129", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "98", "childIds": ["158"], "backendDOMNodeId": 165, "browsergym_id": "81e2f3c3-bdac-4883"}, {"nodeId": "130", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["159"], "backendDOMNodeId": 172, "browsergym_id": "89f24d4d-1369-445d"}, {"nodeId": "131", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "99", "childIds": ["160"], "backendDOMNodeId": 175, "browsergym_id": "7a7d59b2-2d19-405b"}, {"nodeId": "132", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "100", "childIds": ["161", "162"], "backendDOMNodeId": 182, "browsergym_id": "9906a892-7523-4974"}, {"nodeId": "133", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "101", "childIds": ["163"], "backendDOMNodeId": 189}, {"nodeId": "163", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 189}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "133", "childIds": [], "backendDOMNodeId": 190}, {"nodeId": "134", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "102", "childIds": ["164"], "backendDOMNodeId": 193}, {"nodeId": "164", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 193}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "134", "childIds": [], "backendDOMNodeId": 194}, {"nodeId": "135", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["165"], "backendDOMNodeId": 203, "browsergym_id": "0ac63989-0778-4fa9"}, {"nodeId": "136", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "103", "childIds": ["166"], "backendDOMNodeId": 210, "browsergym_id": "7be5960a-2b93-4606"}, {"nodeId": "137", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "104", "childIds": ["167"], "backendDOMNodeId": 220, "browsergym_id": "6c476f38-747f-497b"}, {"nodeId": "138", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "105", "childIds": ["168", "169"], "backendDOMNodeId": 234, "browsergym_id": "37545084-0b67-4ba8"}, {"nodeId": "139", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "106", "childIds": ["170"], "backendDOMNodeId": 241, "browsergym_id": "0ef317a0-d30f-4c6d"}, {"nodeId": "140", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "107", "childIds": ["171"], "backendDOMNodeId": 246, "browsergym_id": "0e62c4a8-8c77-4621"}, {"nodeId": "141", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["172", "173"], "backendDOMNodeId": 252, "browsergym_id": "3beaf557-e299-4a12"}, {"nodeId": "142", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "108", "childIds": ["174"], "backendDOMNodeId": 269, "browsergym_id": "f76757d3-e80a-43e2"}, {"nodeId": "143", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["175"], "backendDOMNodeId": 280, "browsergym_id": "4feb5de0-880e-40fe"}, {"nodeId": "144", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "109", "childIds": ["176"], "backendDOMNodeId": 287, "browsergym_id": "94e83aac-1ee3-41b0"}, {"nodeId": "145", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 297, "browsergym_id": "5e7727d2-0cc4-4b4a"}, {"nodeId": "146", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": [], "backendDOMNodeId": 298, "browsergym_id": "48aefdf4-5e5f-444b"}, {"nodeId": "147", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "110", "childIds": ["177"], "backendDOMNodeId": 299, "browsergym_id": "fb1065f0-4be2-4478"}, {"nodeId": "148", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "111", "childIds": ["178"], "backendDOMNodeId": 728, "browsergym_id": "d5e67e5a-7c1f-44aa"}, {"nodeId": "149", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["179"], "backendDOMNodeId": 95, "browsergym_id": "85c3c4ac-f5e1-45fe"}, {"nodeId": "150", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "121", "childIds": ["180"], "backendDOMNodeId": 109, "browsergym_id": "7d44eabd-3872-49d2"}, {"nodeId": "151", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New Thread", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New Thread"}}]}, "properties": [], "parentId": "122", "childIds": [], "backendDOMNodeId": 116}, {"nodeId": "152", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["181"], "backendDOMNodeId": 118, "browsergym_id": "4cffa24d-ddb1-475b"}, {"nodeId": "153", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "123", "childIds": ["182"], "backendDOMNodeId": 120, "browsergym_id": "fd642430-0eab-4fc7"}, {"nodeId": "154", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "124", "childIds": ["183", "184"], "backendDOMNodeId": 126, "browsergym_id": "fcbbdce8-325e-4fb1"}, {"nodeId": "155", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "125", "childIds": ["185", "186"], "backendDOMNodeId": 134, "browsergym_id": "b5c03e9f-955b-42fc"}, {"nodeId": "156", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "126", "childIds": ["187", "188"], "backendDOMNodeId": 142, "browsergym_id": "2b145999-af7f-4d6b"}, {"nodeId": "157", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "127", "childIds": ["189", "190"], "backendDOMNodeId": 150, "browsergym_id": "7dc4ffc4-461b-479a"}, {"nodeId": "158", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "129", "childIds": ["191"], "backendDOMNodeId": 166, "browsergym_id": "9a1f25dd-6492-4b96"}, {"nodeId": "159", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "130", "childIds": ["192"], "backendDOMNodeId": 173, "browsergym_id": "871146b1-38a9-458e"}, {"nodeId": "160", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "131", "childIds": ["193"], "backendDOMNodeId": 176, "browsergym_id": "75a1808d-a9da-45a1"}, {"nodeId": "161", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "132", "childIds": ["194"], "backendDOMNodeId": 183}, {"nodeId": "194", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 183}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "161", "childIds": [], "backendDOMNodeId": 184}, {"nodeId": "162", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "132", "childIds": ["195"], "backendDOMNodeId": 185, "browsergym_id": "bdc60858-c6f6-4a30"}, {"nodeId": "165", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "135", "childIds": ["196", "197"], "backendDOMNodeId": 204, "browsergym_id": "741f42e6-f416-4dcc"}, {"nodeId": "166", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "136", "childIds": ["198"], "backendDOMNodeId": 211, "browsergym_id": "98d3a4ea-7514-4162"}, {"nodeId": "167", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "137", "childIds": ["199", "200"], "backendDOMNodeId": 221, "browsergym_id": "9112cdfa-979d-4c1e"}, {"nodeId": "168", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "138", "childIds": ["201"], "backendDOMNodeId": 235}, {"nodeId": "201", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 235}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "168", "childIds": [], "backendDOMNodeId": 236}, {"nodeId": "169", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "138", "childIds": ["202"], "backendDOMNodeId": 237, "browsergym_id": "4ed74d4f-9317-4d14"}, {"nodeId": "170", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "139", "childIds": ["203"], "backendDOMNodeId": 242, "browsergym_id": "46f82faf-6fcc-49ad"}, {"nodeId": "171", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "140", "childIds": ["204"], "backendDOMNodeId": 247, "browsergym_id": "3d4913c7-07cd-438d"}, {"nodeId": "172", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "141", "childIds": ["205", "206"], "backendDOMNodeId": 253, "browsergym_id": "a81690e3-843a-41ca"}, {"nodeId": "173", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "141", "childIds": ["207"], "backendDOMNodeId": 262, "browsergym_id": "c044a2c0-9e6d-4de6"}, {"nodeId": "174", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "142", "childIds": ["208"], "backendDOMNodeId": 270, "browsergym_id": "172a1441-54ac-45ee"}, {"nodeId": "175", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "143", "childIds": ["209", "210"], "backendDOMNodeId": 281, "browsergym_id": "4d04d67d-345b-4ae3"}, {"nodeId": "176", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "144", "childIds": ["211"], "backendDOMNodeId": 288, "browsergym_id": "176914ae-974f-4078"}, {"nodeId": "177", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "147", "childIds": ["212", "213", "214", "215"], "backendDOMNodeId": 300, "browsergym_id": "fcdc638d-d113-4cc8"}, {"nodeId": "178", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "148", "childIds": ["216"], "backendDOMNodeId": 729, "browsergym_id": "c6fce410-0af7-455f"}, {"nodeId": "179", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "149", "childIds": ["217"], "backendDOMNodeId": 96, "browsergym_id": "485bff6c-71bc-45d2"}, {"nodeId": "180", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "150", "childIds": ["218"], "backendDOMNodeId": 110, "browsergym_id": "44544999-c82e-4380"}, {"nodeId": "181", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Ctrl", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Ctrl"}}]}, "properties": [], "parentId": "152", "childIds": [], "backendDOMNodeId": 119}, {"nodeId": "182", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "I", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "I"}}]}, "properties": [], "parentId": "153", "childIds": [], "backendDOMNodeId": 121}, {"nodeId": "183", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "154", "childIds": ["219"], "backendDOMNodeId": 127}, {"nodeId": "219", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 127}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "183", "childIds": [], "backendDOMNodeId": 128}, {"nodeId": "184", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "154", "childIds": ["220"], "backendDOMNodeId": 129, "browsergym_id": "0f26e889-69fa-4d88"}, {"nodeId": "185", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "155", "childIds": ["221"], "backendDOMNodeId": 135}, {"nodeId": "221", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 135}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "185", "childIds": [], "backendDOMNodeId": 136}, {"nodeId": "186", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "155", "childIds": ["222"], "backendDOMNodeId": 137, "browsergym_id": "8d529989-4bb0-42a8"}, {"nodeId": "187", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "156", "childIds": ["223"], "backendDOMNodeId": 143}, {"nodeId": "223", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 143}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "187", "childIds": [], "backendDOMNodeId": 144}, {"nodeId": "188", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "156", "childIds": ["224"], "backendDOMNodeId": 145, "browsergym_id": "feaebc43-b9ae-4507"}, {"nodeId": "189", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "157", "childIds": ["225"], "backendDOMNodeId": 151}, {"nodeId": "225", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 151}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "189", "childIds": [], "backendDOMNodeId": 152}, {"nodeId": "190", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "157", "childIds": ["226"], "backendDOMNodeId": 153, "browsergym_id": "517d0488-9b8c-4bcf"}, {"nodeId": "191", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "158", "childIds": ["227"], "backendDOMNodeId": 167, "browsergym_id": "944d7fbc-75f9-48b5"}, {"nodeId": "192", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "159", "childIds": [], "backendDOMNodeId": 174, "browsergym_id": "b673d2d2-5c66-4299"}, {"nodeId": "193", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "160", "childIds": ["228"], "backendDOMNodeId": 177, "browsergym_id": "79f5a38b-828f-46a5"}, {"nodeId": "195", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Download", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Download"}}]}, "properties": [], "parentId": "162", "childIds": [], "backendDOMNodeId": 186}, {"nodeId": "196", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["229"], "backendDOMNodeId": 205, "browsergym_id": "37a8138b-46cb-4d6a"}, {"nodeId": "197", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "165", "childIds": ["230"], "backendDOMNodeId": 208, "browsergym_id": "165705fe-7dd8-419d"}, {"nodeId": "198", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "166", "childIds": ["231", "232"], "backendDOMNodeId": 212, "browsergym_id": "76eee3ed-e0ef-405a"}, {"nodeId": "199", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": [], "backendDOMNodeId": 222, "browsergym_id": "ba924cbf-5843-45dd"}, {"nodeId": "200", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "167", "childIds": ["233", "234", "235", "236", "237", "238", "239", "240", "241"], "backendDOMNodeId": 223, "browsergym_id": "465913e6-d19c-4cf3"}, {"nodeId": "202", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "New", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "New"}}]}, "properties": [], "parentId": "169", "childIds": [], "backendDOMNodeId": 238}, {"nodeId": "203", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Untitled", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Untitled"}}]}, "properties": [], "parentId": "170", "childIds": [], "backendDOMNodeId": 243}, {"nodeId": "204", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "171", "childIds": ["242"], "backendDOMNodeId": 248, "browsergym_id": "4853c5c0-270b-4dff"}, {"nodeId": "205", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["243"], "backendDOMNodeId": 254, "browsergym_id": "7ab4c9a3-b067-4190"}, {"nodeId": "206", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "172", "childIds": ["244"], "backendDOMNodeId": 259, "browsergym_id": "0daeeef2-340d-47fc"}, {"nodeId": "207", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Share"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "173", "childIds": ["245"], "backendDOMNodeId": 263, "browsergym_id": "240fb9a2-41c6-49ee"}, {"nodeId": "208", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "174", "childIds": ["246", "247"], "backendDOMNodeId": 271, "browsergym_id": "729e5a61-6968-4bdf"}, {"nodeId": "209", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["248"], "backendDOMNodeId": 282, "browsergym_id": "25576f8f-ef67-4ce9"}, {"nodeId": "210", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "175", "childIds": ["249"], "backendDOMNodeId": 285, "browsergym_id": "552ee758-830c-4ca5"}, {"nodeId": "211", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "176", "childIds": ["250", "251"], "backendDOMNodeId": 289, "browsergym_id": "fe1e92db-f7d7-4aa2"}, {"nodeId": "212", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["252"], "backendDOMNodeId": 301, "browsergym_id": "5df3a481-a910-4a30"}, {"nodeId": "213", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["253", "254"], "backendDOMNodeId": 305, "browsergym_id": "9c7be7cc-0dd0-4522"}, {"nodeId": "214", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["255", "256", "257"], "backendDOMNodeId": 410, "browsergym_id": "a34ebdd8-4688-48df"}, {"nodeId": "215", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "177", "childIds": ["258"], "backendDOMNodeId": 693, "browsergym_id": "07755d30-62e1-4a1f"}, {"nodeId": "216", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "178", "childIds": ["259"], "backendDOMNodeId": 730, "browsergym_id": "245985ad-1b58-4758"}, {"nodeId": "217", "ignored": false, "role": {"type": "internalRole", "value": "SvgRoot"}, "chromeRole": {"type": "internalRole", "value": 162}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "179", "childIds": ["260", "261"], "backendDOMNodeId": 97, "browsergym_id": "5d905c1c-3feb-46f9"}, {"nodeId": "218", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Perplexity", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Perplexity"}}]}, "properties": [], "parentId": "180", "childIds": [], "backendDOMNodeId": 111}, {"nodeId": "220", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Home"}}]}, "properties": [], "parentId": "184", "childIds": [], "backendDOMNodeId": 130}, {"nodeId": "222", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Discover", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Discover"}}]}, "properties": [], "parentId": "186", "childIds": [], "backendDOMNodeId": 138}, {"nodeId": "224", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "My Threads", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "My Threads"}}]}, "properties": [], "parentId": "188", "childIds": [], "backendDOMNodeId": 146}, {"nodeId": "226", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "AI Profile", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "AI Profile"}}]}, "properties": [], "parentId": "190", "childIds": [], "backendDOMNodeId": 154}, {"nodeId": "227", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Learn More", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Learn More"}}]}, "properties": [], "parentId": "191", "childIds": [], "backendDOMNodeId": 168}, {"nodeId": "228", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "193", "childIds": [], "backendDOMNodeId": 178}, {"nodeId": "229", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "196", "childIds": ["262"], "backendDOMNodeId": 206, "browsergym_id": "0d401d8d-35bf-42b9"}, {"nodeId": "230", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "197", "childIds": [], "backendDOMNodeId": 209}, {"nodeId": "231", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["263"], "backendDOMNodeId": 213, "browsergym_id": "02278f83-3033-4d80"}, {"nodeId": "232", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "198", "childIds": ["264"], "backendDOMNodeId": 216, "browsergym_id": "933faa84-fc31-4c0d"}, {"nodeId": "233", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 224, "browsergym_id": "9137c0eb-cbc5-41cf"}, {"nodeId": "234", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 225, "browsergym_id": "784f54bf-bfc2-4257"}, {"nodeId": "235", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 226, "browsergym_id": "c2d4d4f2-ecab-4f9f"}, {"nodeId": "236", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 227, "browsergym_id": "62ee5dbd-4eb9-4be7"}, {"nodeId": "237", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 228, "browsergym_id": "4cebdd7e-d23f-4fc2"}, {"nodeId": "238", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 229, "browsergym_id": "f2c6d941-e197-43bf"}, {"nodeId": "239", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 230, "browsergym_id": "29eea344-4984-42c6"}, {"nodeId": "240", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 231, "browsergym_id": "77a496c2-ff81-47d9"}, {"nodeId": "241", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "200", "childIds": [], "backendDOMNodeId": 232, "browsergym_id": "6de79056-a982-4d45"}, {"nodeId": "242", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "204", "childIds": ["265"], "backendDOMNodeId": 249}, {"nodeId": "265", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 249}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "242", "childIds": [], "backendDOMNodeId": 250}, {"nodeId": "243", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "205", "childIds": ["266"], "backendDOMNodeId": 255, "browsergym_id": "3ecc6a74-596b-4593"}, {"nodeId": "244", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "206", "childIds": ["267"], "backendDOMNodeId": 260}, {"nodeId": "267", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 260}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "244", "childIds": [], "backendDOMNodeId": 261}, {"nodeId": "245", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "207", "childIds": ["268", "269"], "backendDOMNodeId": 264, "browsergym_id": "b1857b8a-6997-447e"}, {"nodeId": "246", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "208", "childIds": ["270"], "backendDOMNodeId": 272}, {"nodeId": "270", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 272}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "246", "childIds": [], "backendDOMNodeId": 273}, {"nodeId": "247", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "208", "childIds": ["271"], "backendDOMNodeId": 274, "browsergym_id": "5c11555f-5530-4b8e"}, {"nodeId": "248", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "209", "childIds": ["272"], "backendDOMNodeId": 283, "browsergym_id": "cf026042-0851-46ec"}, {"nodeId": "249", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "webtasksnavigator8343", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "webtasksnavigator8343"}}]}, "properties": [], "parentId": "210", "childIds": [], "backendDOMNodeId": 286}, {"nodeId": "250", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["273"], "backendDOMNodeId": 290, "browsergym_id": "6299928b-7c03-4d22"}, {"nodeId": "251", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "211", "childIds": ["274"], "backendDOMNodeId": 293, "browsergym_id": "0120a5b6-a4b8-42f9"}, {"nodeId": "252", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "212", "childIds": ["275"], "backendDOMNodeId": 302, "browsergym_id": "323c736f-d631-435a"}, {"nodeId": "253", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["276"], "backendDOMNodeId": 306, "browsergym_id": "ac182ce0-1577-439c"}, {"nodeId": "254", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "213", "childIds": ["277"], "backendDOMNodeId": 312, "browsergym_id": "fe7b0910-2cc5-4f44"}, {"nodeId": "255", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["278"], "backendDOMNodeId": 411, "browsergym_id": "9b1f0199-999b-4b05"}, {"nodeId": "256", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["279"], "backendDOMNodeId": 420, "browsergym_id": "275d56b2-513c-4c48"}, {"nodeId": "257", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "214", "childIds": ["280", "281", "282", "283"], "backendDOMNodeId": 656, "browsergym_id": "3c14b640-e0f8-4963"}, {"nodeId": "258", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "215", "childIds": ["284"], "backendDOMNodeId": 694, "browsergym_id": "2fde4da4-7019-4462"}, {"nodeId": "259", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "216", "childIds": ["285"], "backendDOMNodeId": 731, "browsergym_id": "8e126868-5968-4212"}, {"nodeId": "260", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": [], "backendDOMNodeId": 98, "browsergym_id": "1e010617-c7a5-4b09"}, {"nodeId": "261", "ignored": false, "role": {"type": "role", "value": "group"}, "chromeRole": {"type": "internalRole", "value": 93}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "217", "childIds": ["286", "287", "288", "289", "290", "291", "292", "293", "294"], "backendDOMNodeId": 99, "browsergym_id": "d6b50cad-c9db-4061"}, {"nodeId": "262", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "229", "childIds": [], "backendDOMNodeId": 207, "browsergym_id": "b5e3c7bf-3dc3-438c"}, {"nodeId": "263", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "231", "childIds": ["295"], "backendDOMNodeId": 214}, {"nodeId": "295", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 214}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "263", "childIds": [], "backendDOMNodeId": 215}, {"nodeId": "264", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "232", "childIds": [], "backendDOMNodeId": 217}, {"nodeId": "266", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "243", "childIds": ["296"], "backendDOMNodeId": 256, "browsergym_id": "50316098-65c7-454f"}, {"nodeId": "268", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "245", "childIds": ["297"], "backendDOMNodeId": 265}, {"nodeId": "297", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 265}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "268", "childIds": [], "backendDOMNodeId": 266}, {"nodeId": "269", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "245", "childIds": ["298"], "backendDOMNodeId": 267, "browsergym_id": "9678c18d-b01c-46f9"}, {"nodeId": "271", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "247", "childIds": [], "backendDOMNodeId": 275}, {"nodeId": "272", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "User avatar", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "User avatar"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "User avatar"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "248", "childIds": [], "backendDOMNodeId": 284, "browsergym_id": "4644ef69-0b8b-4b26"}, {"nodeId": "273", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "250", "childIds": ["299"], "backendDOMNodeId": 291}, {"nodeId": "299", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 291}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "273", "childIds": [], "backendDOMNodeId": 292}, {"nodeId": "274", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Like", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Like"}}]}, "properties": [], "parentId": "251", "childIds": [], "backendDOMNodeId": 294}, {"nodeId": "275", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "252", "childIds": ["300"], "backendDOMNodeId": 303, "browsergym_id": "03ad161a-44a1-4905"}, {"nodeId": "276", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "253", "childIds": ["301", "302"], "backendDOMNodeId": 307, "browsergym_id": "8558afe9-c0d2-411e"}, {"nodeId": "277", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "254", "childIds": ["303", "304"], "backendDOMNodeId": 313, "browsergym_id": "370e6816-b4f3-441e"}, {"nodeId": "278", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "255", "childIds": ["305"], "backendDOMNodeId": 412, "browsergym_id": "4bac0e14-1da6-4aa6"}, {"nodeId": "279", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "256", "childIds": ["306"], "backendDOMNodeId": 421, "browsergym_id": "4dc82e0e-d5bc-43e4"}, {"nodeId": "280", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["307", "308"], "backendDOMNodeId": 657, "browsergym_id": "9ae2c74a-fc18-4f2c"}, {"nodeId": "281", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["309", "310"], "backendDOMNodeId": 666, "browsergym_id": "db8701db-cb0a-4b7d"}, {"nodeId": "282", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["311", "312"], "backendDOMNodeId": 675, "browsergym_id": "5328c8f5-6e7b-4b37"}, {"nodeId": "283", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "257", "childIds": ["313", "314"], "backendDOMNodeId": 684, "browsergym_id": "a673b0ab-e6ce-48e4"}, {"nodeId": "284", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "258", "childIds": ["315"], "backendDOMNodeId": 695, "browsergym_id": "baf2fc3a-86fe-4e58"}, {"nodeId": "285", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "259", "childIds": ["316"], "backendDOMNodeId": 732, "browsergym_id": "3800cab4-6404-4885"}, {"nodeId": "286", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 100, "browsergym_id": "98559116-7ffa-42ae"}, {"nodeId": "287", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 101, "browsergym_id": "781f99a4-37e6-49ed"}, {"nodeId": "288", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 102, "browsergym_id": "eb67453d-003a-4925"}, {"nodeId": "289", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 103, "browsergym_id": "fc947796-58cf-4064"}, {"nodeId": "290", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 104, "browsergym_id": "f2bbe1b5-fa2b-4a1a"}, {"nodeId": "291", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 105, "browsergym_id": "e174c16a-f30a-464c"}, {"nodeId": "292", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 106, "browsergym_id": "b73dc5c9-a1c4-425a"}, {"nodeId": "293", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 107, "browsergym_id": "01a76176-e6ac-4a65"}, {"nodeId": "294", "ignored": false, "role": {"type": "role", "value": "graphics-symbol"}, "chromeRole": {"type": "internalRole", "value": 91}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "title"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "261", "childIds": [], "backendDOMNodeId": 108, "browsergym_id": "955d49ba-418d-4785"}, {"nodeId": "296", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "266", "childIds": ["317"], "backendDOMNodeId": 257, "browsergym_id": "7747ec14-5a7a-4350"}, {"nodeId": "298", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Share", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Share"}}]}, "properties": [], "parentId": "269", "childIds": [], "backendDOMNodeId": 268}, {"nodeId": "300", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Find me some Easy breakfast recipe that requires minimal time."}}]}, "properties": [], "parentId": "275", "childIds": [], "backendDOMNodeId": 304}, {"nodeId": "301", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "276", "childIds": ["318"], "backendDOMNodeId": 308}, {"nodeId": "318", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 308}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "301", "childIds": [], "backendDOMNodeId": 309}, {"nodeId": "302", "ignored": false, "role": {"type": "role", "value": "paragraph"}, "chromeRole": {"type": "internalRole", "value": 133}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "276", "childIds": ["319"], "backendDOMNodeId": 310, "browsergym_id": "bcf43bb7-33c1-4fc1"}, {"nodeId": "303", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["320", "321"], "backendDOMNodeId": 314, "browsergym_id": "0fbe2b99-558b-426e"}, {"nodeId": "304", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "277", "childIds": ["322"], "backendDOMNodeId": 318, "browsergym_id": "5fde6a21-a20f-4c16"}, {"nodeId": "305", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "278", "childIds": ["323"], "backendDOMNodeId": 413, "browsergym_id": "262690b6-c5ce-4cce"}, {"nodeId": "306", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "279", "childIds": ["324", "325"], "backendDOMNodeId": 422, "browsergym_id": "be897aa5-2eb0-41e9"}, {"nodeId": "307", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["326"], "backendDOMNodeId": 658, "browsergym_id": "15c4ad35-0bcd-4bfb"}, {"nodeId": "308", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "280", "childIds": ["327"], "backendDOMNodeId": 663, "browsergym_id": "3807a98c-24a1-43f6"}, {"nodeId": "309", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["328"], "backendDOMNodeId": 667, "browsergym_id": "c1d7c71b-5b4a-4e4b"}, {"nodeId": "310", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "281", "childIds": ["329"], "backendDOMNodeId": 672, "browsergym_id": "49cbddca-2547-4643"}, {"nodeId": "311", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["330"], "backendDOMNodeId": 676, "browsergym_id": "beb1a249-f195-4780"}, {"nodeId": "312", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "282", "childIds": ["331"], "backendDOMNodeId": 681, "browsergym_id": "046815fd-49a0-4d80"}, {"nodeId": "313", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["332"], "backendDOMNodeId": 685, "browsergym_id": "cd842394-6c4e-49dd"}, {"nodeId": "314", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "283", "childIds": ["333"], "backendDOMNodeId": 690, "browsergym_id": "a0e3384d-1b8c-43e4"}, {"nodeId": "315", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "284", "childIds": ["334", "335"], "backendDOMNodeId": 696, "browsergym_id": "b4fa73e8-609f-4065"}, {"nodeId": "316", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "285", "childIds": ["336"], "backendDOMNodeId": 733, "browsergym_id": "73a881eb-242e-4ba9"}, {"nodeId": "317", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy Link", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy Link"}}]}, "properties": [], "parentId": "296", "childIds": [], "backendDOMNodeId": 258}, {"nodeId": "319", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Quick Search", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Quick Search"}}]}, "properties": [], "parentId": "302", "childIds": [], "backendDOMNodeId": 311}, {"nodeId": "320", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": ["337"], "backendDOMNodeId": 315, "browsergym_id": "04aaa56e-a419-4924"}, {"nodeId": "321", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "303", "childIds": [], "backendDOMNodeId": 317, "browsergym_id": "700298e9-eb11-458a"}, {"nodeId": "322", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "304", "childIds": ["338", "339", "340", "341", "342"], "backendDOMNodeId": 319, "browsergym_id": "a73f94e4-2be1-468e"}, {"nodeId": "323", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "305", "childIds": ["343", "344"], "backendDOMNodeId": 414, "browsergym_id": "5d65b1cc-92a6-4e49"}, {"nodeId": "324", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["345", "346", "347"], "backendDOMNodeId": 423, "browsergym_id": "847fd6f1-8a2d-4ddc"}, {"nodeId": "325", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "306", "childIds": ["348", "349", "350", "351"], "backendDOMNodeId": 652, "browsergym_id": "b17cbd73-1346-4cd3"}, {"nodeId": "326", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "307", "childIds": ["352"], "backendDOMNodeId": 659, "browsergym_id": "d7ee96c0-2f68-4184"}, {"nodeId": "327", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "308", "childIds": ["353"], "backendDOMNodeId": 664}, {"nodeId": "353", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 664}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "327", "childIds": [], "backendDOMNodeId": 665}, {"nodeId": "328", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "309", "childIds": ["354"], "backendDOMNodeId": 668, "browsergym_id": "efeed04c-b44a-4f9e"}, {"nodeId": "329", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "310", "childIds": ["355"], "backendDOMNodeId": 673}, {"nodeId": "355", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 673}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "329", "childIds": [], "backendDOMNodeId": 674}, {"nodeId": "330", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "311", "childIds": ["356"], "backendDOMNodeId": 677, "browsergym_id": "f30c8632-223c-41cd"}, {"nodeId": "331", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "312", "childIds": ["357"], "backendDOMNodeId": 682}, {"nodeId": "357", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 682}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "331", "childIds": [], "backendDOMNodeId": 683}, {"nodeId": "332", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "313", "childIds": ["358"], "backendDOMNodeId": 686, "browsergym_id": "4d452c03-7a5e-4211"}, {"nodeId": "333", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "314", "childIds": ["359"], "backendDOMNodeId": 691}, {"nodeId": "359", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 691}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "333", "childIds": [], "backendDOMNodeId": 692}, {"nodeId": "334", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["360"], "backendDOMNodeId": 697, "browsergym_id": "6caeefc2-256e-4a09"}, {"nodeId": "335", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "315", "childIds": ["361", "362", "363"], "backendDOMNodeId": 706, "browsergym_id": "08f0f54c-0bdd-493d"}, {"nodeId": "336", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "316", "childIds": ["364", "365", "366"], "backendDOMNodeId": 734, "browsergym_id": "3ee2c1ad-db74-4aad"}, {"nodeId": "337", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "320", "childIds": [], "backendDOMNodeId": 316, "browsergym_id": "6223cdd8-eabd-4603"}, {"nodeId": "338", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home tasteofhome.com favicon tasteofhome \u00b7 1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["367"], "backendDOMNodeId": 320, "browsergym_id": "a296e17a-3fbf-4fbe"}, {"nodeId": "339", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less) favfamilyrecipes.com favicon favfamilyrecipes \u00b7 2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["368"], "backendDOMNodeId": 338, "browsergym_id": "fec27fa8-aef4-42a9"}, {"nodeId": "340", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right goodhousekeeping.com favicon goodhousekeeping \u00b7 3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["369"], "backendDOMNodeId": 356, "browsergym_id": "781a4dea-b71f-4339"}, {"nodeId": "341", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist greatist.com favicon greatist \u00b7 4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["370"], "backendDOMNodeId": 374, "browsergym_id": "3cf6dcc3-2dca-4390"}, {"nodeId": "342", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks acouplecooks.com favicon acouplecooks \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "322", "childIds": ["371"], "backendDOMNodeId": 392, "browsergym_id": "5456479d-7e77-4ec9"}, {"nodeId": "343", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["372"], "backendDOMNodeId": 415, "browsergym_id": "3d35c129-9293-4201"}, {"nodeId": "344", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "323", "childIds": ["373"], "backendDOMNodeId": 418, "browsergym_id": "411509c0-5b02-4dd4"}, {"nodeId": "345", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["374"], "backendDOMNodeId": 424, "browsergym_id": "60e543e9-3c49-4101"}, {"nodeId": "346", "ignored": false, "role": {"type": "role", "value": "list"}, "chromeRole": {"type": "internalRole", "value": 111}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["375", "376", "377", "378", "379", "380", "381", "382", "383", "384"], "backendDOMNodeId": 427, "browsergym_id": "6cffd73b-fbf4-4c5c"}, {"nodeId": "347", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "324", "childIds": ["385"], "backendDOMNodeId": 650, "browsergym_id": "5bd00d6e-090c-4d5d"}, {"nodeId": "348", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 653, "browsergym_id": "6fc7583c-68c2-4c67"}, {"nodeId": "349", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 654, "browsergym_id": "f432101d-a660-45f3"}, {"nodeId": "350", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 655, "browsergym_id": "8fdc3dc8-45f0-406d"}, {"nodeId": "351", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "related", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "related"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "related"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "325", "childIds": [], "backendDOMNodeId": 3, "browsergym_id": "7e817503-e31f-4e7b"}, {"nodeId": "352", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "326", "childIds": ["386"], "backendDOMNodeId": 660, "browsergym_id": "882c22d3-4f03-4791"}, {"nodeId": "354", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "328", "childIds": ["387"], "backendDOMNodeId": 669, "browsergym_id": "941d7e81-54a1-4407"}, {"nodeId": "356", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "330", "childIds": ["388"], "backendDOMNodeId": 678, "browsergym_id": "00b40a5c-8b55-4306"}, {"nodeId": "358", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "332", "childIds": ["389"], "backendDOMNodeId": 687, "browsergym_id": "c354d42e-d167-4fee"}, {"nodeId": "360", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "334", "childIds": ["390"], "backendDOMNodeId": 698, "browsergym_id": "a9db8675-be7c-4f80"}, {"nodeId": "361", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["391", "392"], "backendDOMNodeId": 707, "browsergym_id": "fe52bdec-20a5-44cb"}, {"nodeId": "362", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["393", "394"], "backendDOMNodeId": 713, "browsergym_id": "ac672e91-840a-4334"}, {"nodeId": "363", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "335", "childIds": ["395", "396"], "backendDOMNodeId": 719, "browsergym_id": "55cd0fa6-d442-4e10"}, {"nodeId": "364", "ignored": false, "role": {"type": "role", "value": "textbox"}, "chromeRole": {"type": "internalRole", "value": 170}, "name": {"type": "computedString", "value": "Ask follow-up...", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "attribute", "attribute": "title"}, {"type": "placeholder", "value": {"type": "computedString", "value": "Ask follow-up..."}, "attribute": "placeholder", "attributeValue": {"type": "string", "value": "Ask follow-up..."}}, {"type": "placeholder", "attribute": "aria-placeholder", "superseded": true}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "focused", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "editable", "value": {"type": "token", "value": "plaintext"}}, {"name": "settable", "value": {"type": "booleanOrUndefined", "value": true}}, {"name": "multiline", "value": {"type": "boolean", "value": true}}, {"name": "readonly", "value": {"type": "boolean", "value": false}}, {"name": "required", "value": {"type": "boolean", "value": false}}], "parentId": "336", "childIds": ["397", "398"], "backendDOMNodeId": 2, "browsergym_id": "b487f7c7-5a80-4400"}, {"nodeId": "365", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": [], "backendDOMNodeId": 735, "browsergym_id": "3196376b-2c1a-4dc4"}, {"nodeId": "366", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "336", "childIds": ["399", "400"], "backendDOMNodeId": 736, "browsergym_id": "bdc5fb0d-eb1f-4496"}, {"nodeId": "367", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "338", "childIds": ["401"], "backendDOMNodeId": 321, "browsergym_id": "40223ff2-ec67-44bb"}, {"nodeId": "368", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "339", "childIds": ["402"], "backendDOMNodeId": 339, "browsergym_id": "a917b887-1bea-4203"}, {"nodeId": "369", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "340", "childIds": ["403"], "backendDOMNodeId": 357, "browsergym_id": "9ab0924f-002a-4131"}, {"nodeId": "370", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "341", "childIds": ["404"], "backendDOMNodeId": 375, "browsergym_id": "bf09bc69-cf90-4c54"}, {"nodeId": "371", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "342", "childIds": ["405"], "backendDOMNodeId": 393, "browsergym_id": "039eefbc-512d-4f3b"}, {"nodeId": "372", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "343", "childIds": ["406"], "backendDOMNodeId": 416}, {"nodeId": "406", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 416}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "372", "childIds": [], "backendDOMNodeId": 417}, {"nodeId": "373", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Answer", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Answer"}}]}, "properties": [], "parentId": "344", "childIds": [], "backendDOMNodeId": 419}, {"nodeId": "374", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Here are some easy breakfast recipes that require minimal time:"}}]}, "properties": [], "parentId": "345", "childIds": [], "backendDOMNodeId": 425}, {"nodeId": "375", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["407", "408", "409", "410"], "backendDOMNodeId": 429, "browsergym_id": "ce3b4b85-bbd6-451b"}, {"nodeId": "376", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["411", "412", "413", "414"], "backendDOMNodeId": 451, "browsergym_id": "453462b2-ec84-4dc6"}, {"nodeId": "377", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["415", "416", "417", "418"], "backendDOMNodeId": 473, "browsergym_id": "2e513126-3ccd-4a93"}, {"nodeId": "378", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["419", "420", "421", "422"], "backendDOMNodeId": 495, "browsergym_id": "3043f974-c032-4a0e"}, {"nodeId": "379", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["423", "424", "425", "426"], "backendDOMNodeId": 517, "browsergym_id": "d70ed951-f6f4-42a2"}, {"nodeId": "380", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["427", "428", "429", "430"], "backendDOMNodeId": 539, "browsergym_id": "d158cbdd-5cb0-4bdf"}, {"nodeId": "381", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["431", "432", "433", "434"], "backendDOMNodeId": 561, "browsergym_id": "c0d66170-7079-4f23"}, {"nodeId": "382", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["435", "436", "437", "438"], "backendDOMNodeId": 583, "browsergym_id": "32d1272f-1b84-4172"}, {"nodeId": "383", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["439", "440", "441", "442"], "backendDOMNodeId": 605, "browsergym_id": "734532c1-0a36-4a49"}, {"nodeId": "384", "ignored": false, "role": {"type": "role", "value": "listitem"}, "chromeRole": {"type": "internalRole", "value": 115}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "level", "value": {"type": "integer", "value": 1}}], "parentId": "346", "childIds": ["443", "444", "445", "446"], "backendDOMNodeId": 627, "browsergym_id": "ac64a644-c138-496d"}, {"nodeId": "385", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast."}}]}, "properties": [], "parentId": "347", "childIds": [], "backendDOMNodeId": 651}, {"nodeId": "386", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "352", "childIds": ["447"], "backendDOMNodeId": 661, "browsergym_id": "41fa1c18-8478-4a25"}, {"nodeId": "387", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "354", "childIds": ["448"], "backendDOMNodeId": 670, "browsergym_id": "30e60d7a-4227-478d"}, {"nodeId": "388", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "356", "childIds": ["449"], "backendDOMNodeId": 679, "browsergym_id": "45f0477f-5948-4d8d"}, {"nodeId": "389", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "358", "childIds": ["450"], "backendDOMNodeId": 688, "browsergym_id": "c70406f2-450e-44fb"}, {"nodeId": "390", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "360", "childIds": ["451"], "backendDOMNodeId": 699, "browsergym_id": "cb809cd9-bc38-468d"}, {"nodeId": "391", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["452"], "backendDOMNodeId": 708, "browsergym_id": "f027ca85-503b-4dbe"}, {"nodeId": "392", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "361", "childIds": ["453"], "backendDOMNodeId": 710, "browsergym_id": "79b3a7fc-87d2-4198"}, {"nodeId": "393", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["454"], "backendDOMNodeId": 714, "browsergym_id": "74a5fea7-e5d3-499c"}, {"nodeId": "394", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "362", "childIds": ["455"], "backendDOMNodeId": 716, "browsergym_id": "38811f1e-9b89-4d47"}, {"nodeId": "395", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["456"], "backendDOMNodeId": 720, "browsergym_id": "a1719217-08f2-499c"}, {"nodeId": "396", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "363", "childIds": ["457"], "backendDOMNodeId": 722, "browsergym_id": "5c2c270e-cc8d-4a8e"}, {"nodeId": "397", "ignored": true, "ignoredReasons": [], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "364", "childIds": [], "backendDOMNodeId": 826}, {"nodeId": "398", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "editable", "value": {"type": "token", "value": "plaintext"}}], "parentId": "364", "childIds": [], "backendDOMNodeId": 827}, {"nodeId": "399", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours. Copilot \u00b7 5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["458", "459"], "backendDOMNodeId": 737, "browsergym_id": "f6de9c49-6082-4769"}, {"nodeId": "400", "ignored": false, "role": {"type": "role", "value": "button"}, "chromeRole": {"type": "internalRole", "value": 9}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "relatedElement", "nativeSource": "label"}, {"type": "contents"}, {"type": "attribute", "attribute": "title"}]}, "properties": [{"name": "invalid", "value": {"type": "token", "value": "false"}}, {"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "366", "childIds": ["460"], "backendDOMNodeId": 752, "browsergym_id": "771ccc57-eaf1-4333"}, {"nodeId": "401", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "367", "childIds": ["461"], "backendDOMNodeId": 322, "browsergym_id": "45a2b5e0-6e0f-4609"}, {"nodeId": "402", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "368", "childIds": ["462"], "backendDOMNodeId": 340, "browsergym_id": "d62b89c4-22f1-4177"}, {"nodeId": "403", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "369", "childIds": ["463"], "backendDOMNodeId": 358, "browsergym_id": "41332a3e-8183-42b7"}, {"nodeId": "404", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "370", "childIds": ["464"], "backendDOMNodeId": 376, "browsergym_id": "f7f10518-f6a2-40ab"}, {"nodeId": "405", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "371", "childIds": ["465"], "backendDOMNodeId": 394, "browsergym_id": "64bd20ee-4420-43c3"}, {"nodeId": "407", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "1. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1. "}}]}, "properties": [], "parentId": "375", "childIds": ["466"], "backendDOMNodeId": 430}, {"nodeId": "408", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 431, "browsergym_id": "7ad79a7b-177b-4822"}, {"nodeId": "409", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": ["467", "468", "469", "470"], "backendDOMNodeId": 433, "browsergym_id": "dbb3c333-767a-46f7"}, {"nodeId": "410", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "375", "childIds": [], "backendDOMNodeId": 448, "browsergym_id": "649a6079-ca48-4447"}, {"nodeId": "411", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "2. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2. "}}]}, "properties": [], "parentId": "376", "childIds": ["471"], "backendDOMNodeId": 452}, {"nodeId": "412", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 453, "browsergym_id": "6e26478a-5585-4d10"}, {"nodeId": "413", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": ["472", "473", "474", "475"], "backendDOMNodeId": 455, "browsergym_id": "9c4e5353-1756-4beb"}, {"nodeId": "414", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "376", "childIds": [], "backendDOMNodeId": 470, "browsergym_id": "d221c4f9-4cc7-4fd1"}, {"nodeId": "415", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "3. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3. "}}]}, "properties": [], "parentId": "377", "childIds": ["476"], "backendDOMNodeId": 474}, {"nodeId": "416", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 475, "browsergym_id": "1a3c81fd-edb9-426d"}, {"nodeId": "417", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": ["477", "478", "479", "480"], "backendDOMNodeId": 477, "browsergym_id": "3a901b6b-8823-400f"}, {"nodeId": "418", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "377", "childIds": [], "backendDOMNodeId": 492, "browsergym_id": "e7adc3b3-bd07-468c"}, {"nodeId": "419", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "4. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4. "}}]}, "properties": [], "parentId": "378", "childIds": ["481"], "backendDOMNodeId": 496}, {"nodeId": "420", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 497, "browsergym_id": "0c1d4b57-977b-414c"}, {"nodeId": "421", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": ["482", "483", "484", "485"], "backendDOMNodeId": 499, "browsergym_id": "061afb7a-d917-4247"}, {"nodeId": "422", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "378", "childIds": [], "backendDOMNodeId": 514, "browsergym_id": "b1395bf8-53fc-4191"}, {"nodeId": "423", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "5. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5. "}}]}, "properties": [], "parentId": "379", "childIds": ["486"], "backendDOMNodeId": 518}, {"nodeId": "424", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 519, "browsergym_id": "ed567416-dcc9-4440"}, {"nodeId": "425", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": ["487", "488", "489", "490"], "backendDOMNodeId": 521, "browsergym_id": "abea0b53-f851-47e6"}, {"nodeId": "426", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "379", "childIds": [], "backendDOMNodeId": 536, "browsergym_id": "0e9a11d5-4f4e-4121"}, {"nodeId": "427", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "6. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "6. "}}]}, "properties": [], "parentId": "380", "childIds": ["491"], "backendDOMNodeId": 540}, {"nodeId": "428", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 541, "browsergym_id": "00b028b3-e5e8-488c"}, {"nodeId": "429", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": ["492", "493", "494", "495"], "backendDOMNodeId": 543, "browsergym_id": "5dd4d2a3-0e81-436c"}, {"nodeId": "430", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "380", "childIds": [], "backendDOMNodeId": 558, "browsergym_id": "166c2955-c355-4f69"}, {"nodeId": "431", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "7. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "7. "}}]}, "properties": [], "parentId": "381", "childIds": ["496"], "backendDOMNodeId": 562}, {"nodeId": "432", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 563, "browsergym_id": "d588d1fa-099c-4ad1"}, {"nodeId": "433", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": ["497", "498", "499", "500"], "backendDOMNodeId": 565, "browsergym_id": "f4cd1166-1ed7-4f4c"}, {"nodeId": "434", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "381", "childIds": [], "backendDOMNodeId": 580, "browsergym_id": "9db89de0-13f4-4a71"}, {"nodeId": "435", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "8. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "8. "}}]}, "properties": [], "parentId": "382", "childIds": ["501"], "backendDOMNodeId": 584}, {"nodeId": "436", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 585, "browsergym_id": "164b39e3-431c-4d48"}, {"nodeId": "437", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": ["502", "503", "504", "505"], "backendDOMNodeId": 587, "browsergym_id": "370de633-6605-43ef"}, {"nodeId": "438", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "382", "childIds": [], "backendDOMNodeId": 602, "browsergym_id": "6085237d-6eed-43f5"}, {"nodeId": "439", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "9. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "9. "}}]}, "properties": [], "parentId": "383", "childIds": ["506"], "backendDOMNodeId": 606}, {"nodeId": "440", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 607, "browsergym_id": "ea1ce600-d536-4bea"}, {"nodeId": "441", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": ["507", "508", "509", "510"], "backendDOMNodeId": 609, "browsergym_id": "64e90a4a-ac01-4595"}, {"nodeId": "442", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "383", "childIds": [], "backendDOMNodeId": 624, "browsergym_id": "109d1584-50ff-402f"}, {"nodeId": "443", "ignored": false, "role": {"type": "internalRole", "value": "ListMarker"}, "chromeRole": {"type": "internalRole", "value": 116}, "name": {"type": "computedString", "value": "10. ", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "10. "}}]}, "properties": [], "parentId": "384", "childIds": ["511"], "backendDOMNodeId": 628}, {"nodeId": "444", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 629, "browsergym_id": "c520a713-6201-4a44"}, {"nodeId": "445", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": ["512", "513", "514", "515"], "backendDOMNodeId": 631, "browsergym_id": "b65ceba9-26f7-4f38"}, {"nodeId": "446", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "384", "childIds": [], "backendDOMNodeId": 646, "browsergym_id": "849ca63a-ed50-4fb2"}, {"nodeId": "447", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Not Accurate", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Not Accurate"}}]}, "properties": [], "parentId": "386", "childIds": [], "backendDOMNodeId": 662}, {"nodeId": "448", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "View Sources", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "View Sources"}}]}, "properties": [], "parentId": "387", "childIds": [], "backendDOMNodeId": 671}, {"nodeId": "449", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copy To Clipboard", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copy To Clipboard"}}]}, "properties": [], "parentId": "388", "childIds": [], "backendDOMNodeId": 680}, {"nodeId": "450", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Edit Query", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Edit Query"}}]}, "properties": [], "parentId": "389", "childIds": [], "backendDOMNodeId": 689}, {"nodeId": "451", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "390", "childIds": ["516", "517"], "backendDOMNodeId": 700, "browsergym_id": "fc27ada2-34ee-4a20"}, {"nodeId": "452", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made ahead of time"}}]}, "properties": [], "parentId": "391", "childIds": [], "backendDOMNodeId": 709}, {"nodeId": "453", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "392", "childIds": ["518"], "backendDOMNodeId": 711}, {"nodeId": "518", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 711}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "453", "childIds": [], "backendDOMNodeId": 712}, {"nodeId": "454", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "healthy breakfast options that require minimal prep time"}}]}, "properties": [], "parentId": "393", "childIds": [], "backendDOMNodeId": 715}, {"nodeId": "455", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "394", "childIds": ["519"], "backendDOMNodeId": 717}, {"nodeId": "519", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 717}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "455", "childIds": [], "backendDOMNodeId": 718}, {"nodeId": "456", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "breakfast recipes that can be made with pantry staples"}}]}, "properties": [], "parentId": "395", "childIds": [], "backendDOMNodeId": 721}, {"nodeId": "457", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "396", "childIds": ["520"], "backendDOMNodeId": 723}, {"nodeId": "520", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 723}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "457", "childIds": [], "backendDOMNodeId": 724}, {"nodeId": "458", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["521"], "backendDOMNodeId": 738, "browsergym_id": "f59e4dfc-5b11-4e79"}, {"nodeId": "459", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "399", "childIds": ["522", "523", "524"], "backendDOMNodeId": 743, "browsergym_id": "fa488be5-8f46-475c"}, {"nodeId": "460", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "400", "childIds": ["525"], "backendDOMNodeId": 753, "browsergym_id": "912c7141-3166-4ce3"}, {"nodeId": "461", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "401", "childIds": ["526", "527"], "backendDOMNodeId": 323, "browsergym_id": "ec685cad-2276-4dfe"}, {"nodeId": "462", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "402", "childIds": ["528", "529"], "backendDOMNodeId": 341, "browsergym_id": "9fdafbad-19d2-4ad2"}, {"nodeId": "463", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "403", "childIds": ["530", "531"], "backendDOMNodeId": 359, "browsergym_id": "fb5bd943-9d4b-498b"}, {"nodeId": "464", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "404", "childIds": ["532", "533"], "backendDOMNodeId": 377, "browsergym_id": "773ad79f-ae38-49d6"}, {"nodeId": "465", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "405", "childIds": ["534", "535"], "backendDOMNodeId": 395, "browsergym_id": "1db606b7-036d-431d"}, {"nodeId": "466", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "407", "childIds": []}, {"nodeId": "467", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["536"], "backendDOMNodeId": 434, "browsergym_id": "ce45de3f-64f5-458c"}, {"nodeId": "468", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["537"], "backendDOMNodeId": 437, "browsergym_id": "13158e00-e482-43c7"}, {"nodeId": "469", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": ["538"], "backendDOMNodeId": 439, "browsergym_id": "7ce0a6c8-2d10-4328"}, {"nodeId": "470", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "409", "childIds": [], "backendDOMNodeId": 447, "browsergym_id": "a6354d3a-2c6e-4608"}, {"nodeId": "471", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "411", "childIds": []}, {"nodeId": "472", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["539"], "backendDOMNodeId": 456, "browsergym_id": "6e483ca8-fa68-4731"}, {"nodeId": "473", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["540"], "backendDOMNodeId": 459, "browsergym_id": "4b6bcea6-2209-4951"}, {"nodeId": "474", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": ["541"], "backendDOMNodeId": 461, "browsergym_id": "a552b5c9-7645-4086"}, {"nodeId": "475", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "413", "childIds": [], "backendDOMNodeId": 469, "browsergym_id": "ad8f9678-da33-45c8"}, {"nodeId": "476", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "415", "childIds": []}, {"nodeId": "477", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["542"], "backendDOMNodeId": 478, "browsergym_id": "386a027c-99f9-41b2"}, {"nodeId": "478", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["543"], "backendDOMNodeId": 481, "browsergym_id": "46d5b867-8704-441b"}, {"nodeId": "479", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": ["544"], "backendDOMNodeId": 483, "browsergym_id": "def7faae-818b-4309"}, {"nodeId": "480", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "417", "childIds": [], "backendDOMNodeId": 491, "browsergym_id": "6874c4b8-81b6-4ea1"}, {"nodeId": "481", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "419", "childIds": []}, {"nodeId": "482", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["545"], "backendDOMNodeId": 500, "browsergym_id": "000d8eb3-bc2c-47d1"}, {"nodeId": "483", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["546"], "backendDOMNodeId": 503, "browsergym_id": "53a26a0f-4ff1-47b3"}, {"nodeId": "484", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": ["547"], "backendDOMNodeId": 505, "browsergym_id": "9386c533-36fe-4083"}, {"nodeId": "485", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "421", "childIds": [], "backendDOMNodeId": 513, "browsergym_id": "49f4f2e9-a947-4472"}, {"nodeId": "486", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "423", "childIds": []}, {"nodeId": "487", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["548"], "backendDOMNodeId": 522, "browsergym_id": "87525086-f477-4a32"}, {"nodeId": "488", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["549"], "backendDOMNodeId": 525, "browsergym_id": "834b664a-62ef-4ff3"}, {"nodeId": "489", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": ["550"], "backendDOMNodeId": 527, "browsergym_id": "700b2beb-a2bd-4ad9"}, {"nodeId": "490", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "425", "childIds": [], "backendDOMNodeId": 535, "browsergym_id": "5078c7db-8770-480b"}, {"nodeId": "491", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "427", "childIds": []}, {"nodeId": "492", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["551"], "backendDOMNodeId": 544, "browsergym_id": "55d732f3-dfbf-4430"}, {"nodeId": "493", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["552"], "backendDOMNodeId": 547, "browsergym_id": "82d88286-a87b-4103"}, {"nodeId": "494", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": ["553"], "backendDOMNodeId": 549, "browsergym_id": "72bc6539-7808-42ea"}, {"nodeId": "495", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "429", "childIds": [], "backendDOMNodeId": 557, "browsergym_id": "cdaa4027-148b-4143"}, {"nodeId": "496", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "431", "childIds": []}, {"nodeId": "497", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["554"], "backendDOMNodeId": 566, "browsergym_id": "7ea6e7e4-3b61-4e18"}, {"nodeId": "498", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["555"], "backendDOMNodeId": 569, "browsergym_id": "8e45cc94-1950-4a9c"}, {"nodeId": "499", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": ["556"], "backendDOMNodeId": 571, "browsergym_id": "e8f6cbd2-1544-4545"}, {"nodeId": "500", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "433", "childIds": [], "backendDOMNodeId": 579, "browsergym_id": "d0fde8ee-9680-49b4"}, {"nodeId": "501", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "435", "childIds": []}, {"nodeId": "502", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["557"], "backendDOMNodeId": 588, "browsergym_id": "a308bf34-a183-4858"}, {"nodeId": "503", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["558"], "backendDOMNodeId": 591, "browsergym_id": "eb7212c5-24af-4055"}, {"nodeId": "504", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": ["559"], "backendDOMNodeId": 593, "browsergym_id": "147b6219-5edd-48bb"}, {"nodeId": "505", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "437", "childIds": [], "backendDOMNodeId": 601, "browsergym_id": "66d18b6b-66a1-4dbe"}, {"nodeId": "506", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "439", "childIds": []}, {"nodeId": "507", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["560"], "backendDOMNodeId": 610, "browsergym_id": "e95e6237-5174-4bbc"}, {"nodeId": "508", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["561"], "backendDOMNodeId": 613, "browsergym_id": "9b033c7c-beab-40e3"}, {"nodeId": "509", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": ["562"], "backendDOMNodeId": 615, "browsergym_id": "7b69e0ef-cd41-4e44"}, {"nodeId": "510", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "441", "childIds": [], "backendDOMNodeId": 623, "browsergym_id": "43b1a1bf-d0db-47ee"}, {"nodeId": "511", "ignored": true, "ignoredReasons": [{"name": "presentationalRole", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "443", "childIds": []}, {"nodeId": "512", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["563"], "backendDOMNodeId": 632, "browsergym_id": "932b021b-6a97-422f"}, {"nodeId": "513", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["564"], "backendDOMNodeId": 635, "browsergym_id": "c13f4f01-082c-42dc"}, {"nodeId": "514", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": ["565"], "backendDOMNodeId": 637, "browsergym_id": "0c7f39b2-d7f0-4d06"}, {"nodeId": "515", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "445", "childIds": [], "backendDOMNodeId": 645, "browsergym_id": "1db25a60-bd78-49e6"}, {"nodeId": "516", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["566"], "backendDOMNodeId": 701, "browsergym_id": "d85608f9-95c5-485a"}, {"nodeId": "517", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "451", "childIds": ["567"], "backendDOMNodeId": 704, "browsergym_id": "1f10bcb4-130f-4dc1"}, {"nodeId": "521", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "458", "childIds": ["568"], "backendDOMNodeId": 739, "browsergym_id": "13f195e4-3b1a-4e39"}, {"nodeId": "522", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["569"], "backendDOMNodeId": 744, "browsergym_id": "b31b1f81-4012-497f"}, {"nodeId": "523", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["570"], "backendDOMNodeId": 748, "browsergym_id": "c2907036-f298-445f"}, {"nodeId": "524", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "459", "childIds": ["571"], "backendDOMNodeId": 750, "browsergym_id": "fa5817d7-bb0c-4832"}, {"nodeId": "525", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "460", "childIds": ["572"], "backendDOMNodeId": 754}, {"nodeId": "572", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 754}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "525", "childIds": [], "backendDOMNodeId": 755}, {"nodeId": "526", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["573"], "backendDOMNodeId": 324, "browsergym_id": "b46f8877-710e-4581"}, {"nodeId": "527", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "461", "childIds": ["574", "575", "576"], "backendDOMNodeId": 327, "browsergym_id": "56bb96c0-9d6f-439e"}, {"nodeId": "528", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["577"], "backendDOMNodeId": 342, "browsergym_id": "676aea97-b445-4e7e"}, {"nodeId": "529", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "462", "childIds": ["578", "579", "580"], "backendDOMNodeId": 345, "browsergym_id": "0bda2a5c-95d2-426f"}, {"nodeId": "530", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["581"], "backendDOMNodeId": 360, "browsergym_id": "91c48008-66f6-4822"}, {"nodeId": "531", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "463", "childIds": ["582", "583", "584"], "backendDOMNodeId": 363, "browsergym_id": "c69d470c-b20e-43c0"}, {"nodeId": "532", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["585"], "backendDOMNodeId": 378, "browsergym_id": "c289791c-7f08-4dd6"}, {"nodeId": "533", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "464", "childIds": ["586", "587", "588"], "backendDOMNodeId": 381, "browsergym_id": "846721d4-3cf2-428c"}, {"nodeId": "534", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["589"], "backendDOMNodeId": 396, "browsergym_id": "30f04103-6371-48f2"}, {"nodeId": "535", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "465", "childIds": ["590", "591", "592"], "backendDOMNodeId": 399, "browsergym_id": "32542a4a-51b0-4ad2"}, {"nodeId": "536", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "467", "childIds": ["593"], "backendDOMNodeId": 435, "browsergym_id": "88ea41e3-d5f6-4d7f"}, {"nodeId": "537", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"}}]}, "properties": [], "parentId": "468", "childIds": [], "backendDOMNodeId": 438}, {"nodeId": "538", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "469", "childIds": ["594", "595"], "backendDOMNodeId": 440, "browsergym_id": "1e7a1345-d503-47f5"}, {"nodeId": "539", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "472", "childIds": ["596"], "backendDOMNodeId": 457, "browsergym_id": "f665eb1c-418c-46e2"}, {"nodeId": "540", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"}}]}, "properties": [], "parentId": "473", "childIds": [], "backendDOMNodeId": 460}, {"nodeId": "541", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "474", "childIds": ["597", "598"], "backendDOMNodeId": 462, "browsergym_id": "c30a812e-5f9c-4d83"}, {"nodeId": "542", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "477", "childIds": ["599"], "backendDOMNodeId": 479, "browsergym_id": "d2cc40af-1dd9-46ec"}, {"nodeId": "543", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Jazz up a basic omelet with a few ingredients for a delicious breakfast"}}]}, "properties": [], "parentId": "478", "childIds": [], "backendDOMNodeId": 482}, {"nodeId": "544", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "479", "childIds": ["600", "601"], "backendDOMNodeId": 484, "browsergym_id": "55e27820-0e69-4e12"}, {"nodeId": "545", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "482", "childIds": ["602"], "backendDOMNodeId": 501, "browsergym_id": "a31a5b00-3f1d-4906"}, {"nodeId": "546", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"}}]}, "properties": [], "parentId": "483", "childIds": [], "backendDOMNodeId": 504}, {"nodeId": "547", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "484", "childIds": ["603", "604"], "backendDOMNodeId": 506, "browsergym_id": "59ae81a5-9daf-4e61"}, {"nodeId": "548", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "487", "childIds": ["605"], "backendDOMNodeId": 523, "browsergym_id": "8a910f2a-bfa0-4494"}, {"nodeId": "549", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These hearty quesadillas are a quick and easy breakfast idea"}}]}, "properties": [], "parentId": "488", "childIds": [], "backendDOMNodeId": 526}, {"nodeId": "550", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "489", "childIds": ["606", "607"], "backendDOMNodeId": 528, "browsergym_id": "a304557f-a5df-43c4"}, {"nodeId": "551", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "492", "childIds": ["608"], "backendDOMNodeId": 545, "browsergym_id": "dc8b9dd3-d402-4580"}, {"nodeId": "552", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These bright lemon muffins topped with crunchy almonds are a great way to start the day"}}]}, "properties": [], "parentId": "493", "childIds": [], "backendDOMNodeId": 548}, {"nodeId": "553", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "494", "childIds": ["609", "610"], "backendDOMNodeId": 550, "browsergym_id": "93a100c8-fb8c-43ca"}, {"nodeId": "554", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "497", "childIds": ["611"], "backendDOMNodeId": 567, "browsergym_id": "225694be-9fb5-4421"}, {"nodeId": "555", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"}}]}, "properties": [], "parentId": "498", "childIds": [], "backendDOMNodeId": 570}, {"nodeId": "556", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "499", "childIds": ["612", "613"], "backendDOMNodeId": 572, "browsergym_id": "f190d90a-a1d5-4cfc"}, {"nodeId": "557", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "502", "childIds": ["614"], "backendDOMNodeId": 589, "browsergym_id": "2e73e85b-ea9c-44a7"}, {"nodeId": "558", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"}}]}, "properties": [], "parentId": "503", "childIds": [], "backendDOMNodeId": 592}, {"nodeId": "559", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "504", "childIds": ["615", "616"], "backendDOMNodeId": 594, "browsergym_id": "116d5fe3-1a03-475a"}, {"nodeId": "560", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "507", "childIds": ["617"], "backendDOMNodeId": 611, "browsergym_id": "c3e0f0b2-c02f-437d"}, {"nodeId": "561", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"}}]}, "properties": [], "parentId": "508", "childIds": [], "backendDOMNodeId": 614}, {"nodeId": "562", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "509", "childIds": ["618", "619"], "backendDOMNodeId": 616, "browsergym_id": "af274418-9d9a-4391"}, {"nodeId": "563", "ignored": false, "role": {"type": "role", "value": "strong"}, "chromeRole": {"type": "internalRole", "value": 160}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "512", "childIds": ["620"], "backendDOMNodeId": 633, "browsergym_id": "6e344c53-ab99-4a3e"}, {"nodeId": "564", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "sources": [{"type": "contents", "value": {"type": "computedString", "value": ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients"}}]}, "properties": [], "parentId": "513", "childIds": [], "backendDOMNodeId": 636}, {"nodeId": "565", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "514", "childIds": ["621", "622"], "backendDOMNodeId": 638, "browsergym_id": "bf9d23cb-ffe8-42a8"}, {"nodeId": "566", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenElement", "value": {"type": "boolean", "value": true}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "516", "childIds": ["623"], "backendDOMNodeId": 702}, {"nodeId": "623", "ignored": true, "ignoredReasons": [{"name": "ariaHiddenSubtree", "value": {"type": "idref", "relatedNodes": [{"backendDOMNodeId": 702}]}}], "role": {"type": "role", "value": "none"}, "chromeRole": {"type": "internalRole", "value": 0}, "parentId": "566", "childIds": [], "backendDOMNodeId": 703}, {"nodeId": "567", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Related", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Related"}}]}, "properties": [], "parentId": "517", "childIds": [], "backendDOMNodeId": 705}, {"nodeId": "568", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "521", "childIds": ["624"], "backendDOMNodeId": 740, "browsergym_id": "ec05d9bc-cfba-497f"}, {"nodeId": "569", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "522", "childIds": ["625"], "backendDOMNodeId": 745, "browsergym_id": "63a75b8d-57dc-4086"}, {"nodeId": "570", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Copilot", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Copilot"}}]}, "properties": [], "parentId": "523", "childIds": [], "backendDOMNodeId": 749}, {"nodeId": "571", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": " \u00b7 5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": " \u00b7 5"}}]}, "properties": [], "parentId": "524", "childIds": [], "backendDOMNodeId": 751}, {"nodeId": "573", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "526", "childIds": ["626"], "backendDOMNodeId": 325, "browsergym_id": "c3a6512d-dbb1-404e"}, {"nodeId": "574", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["627", "628"], "backendDOMNodeId": 328, "browsergym_id": "caac51c4-cf29-4be9"}, {"nodeId": "575", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["629"], "backendDOMNodeId": 334, "browsergym_id": "a48a9f2d-2e92-431a"}, {"nodeId": "576", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "527", "childIds": ["630"], "backendDOMNodeId": 336, "browsergym_id": "127e909d-96b9-4103"}, {"nodeId": "577", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "528", "childIds": ["631"], "backendDOMNodeId": 343, "browsergym_id": "afb00160-bf5d-4cee"}, {"nodeId": "578", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["632", "633"], "backendDOMNodeId": 346, "browsergym_id": "fefe87b1-9278-4e85"}, {"nodeId": "579", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["634"], "backendDOMNodeId": 352, "browsergym_id": "c6588d87-4279-4789"}, {"nodeId": "580", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "529", "childIds": ["635"], "backendDOMNodeId": 354, "browsergym_id": "08f2aedb-ea0b-42ce"}, {"nodeId": "581", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "530", "childIds": ["636"], "backendDOMNodeId": 361, "browsergym_id": "7fc3a830-7aea-4b6b"}, {"nodeId": "582", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["637", "638"], "backendDOMNodeId": 364, "browsergym_id": "89a25add-4f94-4257"}, {"nodeId": "583", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["639"], "backendDOMNodeId": 370, "browsergym_id": "4ddbc830-f8c6-4938"}, {"nodeId": "584", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "531", "childIds": ["640"], "backendDOMNodeId": 372, "browsergym_id": "35380cbf-159b-4c1f"}, {"nodeId": "585", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "532", "childIds": ["641"], "backendDOMNodeId": 379, "browsergym_id": "44b18b34-feac-4e3a"}, {"nodeId": "586", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["642", "643"], "backendDOMNodeId": 382, "browsergym_id": "20a09b68-f784-477e"}, {"nodeId": "587", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["644"], "backendDOMNodeId": 388, "browsergym_id": "b5b4164a-f4c1-45d4"}, {"nodeId": "588", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "533", "childIds": ["645"], "backendDOMNodeId": 390, "browsergym_id": "5a6b1ec7-5ede-4c66"}, {"nodeId": "589", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "534", "childIds": ["646"], "backendDOMNodeId": 397, "browsergym_id": "bb8889c9-609c-456b"}, {"nodeId": "590", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["647", "648"], "backendDOMNodeId": 400, "browsergym_id": "af0080d4-ffa5-4cb9"}, {"nodeId": "591", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["649"], "backendDOMNodeId": 406, "browsergym_id": "5999ad85-9f25-4c7e"}, {"nodeId": "592", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "535", "childIds": ["650"], "backendDOMNodeId": 408, "browsergym_id": "d6d5cffd-7197-40c6"}, {"nodeId": "593", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Sausage & Crescent Roll Casserole"}}]}, "properties": [], "parentId": "536", "childIds": [], "backendDOMNodeId": 436}, {"nodeId": "594", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "538", "childIds": ["651"], "backendDOMNodeId": 441, "browsergym_id": "ced9b056-943c-4d3c"}, {"nodeId": "595", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "538", "childIds": [], "backendDOMNodeId": 446}, {"nodeId": "596", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Overnight Cherry-Almond Oatmeal"}}]}, "properties": [], "parentId": "539", "childIds": [], "backendDOMNodeId": 458}, {"nodeId": "597", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "541", "childIds": ["652"], "backendDOMNodeId": 463, "browsergym_id": "04640465-4061-4edd"}, {"nodeId": "598", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "541", "childIds": [], "backendDOMNodeId": 468}, {"nodeId": "599", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Chorizo Salsa Omelet", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Chorizo Salsa Omelet"}}]}, "properties": [], "parentId": "542", "childIds": [], "backendDOMNodeId": 480}, {"nodeId": "600", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "544", "childIds": ["653"], "backendDOMNodeId": 485, "browsergym_id": "bf05b0f3-e5d1-4187"}, {"nodeId": "601", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "544", "childIds": [], "backendDOMNodeId": 490}, {"nodeId": "602", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Berries in Yogurt Cream", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Berries in Yogurt Cream"}}]}, "properties": [], "parentId": "545", "childIds": [], "backendDOMNodeId": 502}, {"nodeId": "603", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "1"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "547", "childIds": ["654"], "backendDOMNodeId": 507, "browsergym_id": "1b840274-2d28-4b6a"}, {"nodeId": "604", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "547", "childIds": [], "backendDOMNodeId": 512}, {"nodeId": "605", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Breakfast Quesadillas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Breakfast Quesadillas"}}]}, "properties": [], "parentId": "548", "childIds": [], "backendDOMNodeId": 524}, {"nodeId": "606", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "2"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "550", "childIds": ["655"], "backendDOMNodeId": 529, "browsergym_id": "37f12dad-5d33-4857"}, {"nodeId": "607", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "550", "childIds": [], "backendDOMNodeId": 534}, {"nodeId": "608", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Muffins de lim\u00f3n y almendra con semillas de amapola"}}]}, "properties": [], "parentId": "551", "childIds": [], "backendDOMNodeId": 546}, {"nodeId": "609", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "3"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "553", "childIds": ["656"], "backendDOMNodeId": 551, "browsergym_id": "3d936f1d-a568-42c3"}, {"nodeId": "610", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "553", "childIds": [], "backendDOMNodeId": 556}, {"nodeId": "611", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Apple cinnamon overnight oats", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Apple cinnamon overnight oats"}}]}, "properties": [], "parentId": "554", "childIds": [], "backendDOMNodeId": 568}, {"nodeId": "612", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "4"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "556", "childIds": ["657"], "backendDOMNodeId": 573, "browsergym_id": "4194bb90-118e-4a5a"}, {"nodeId": "613", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "556", "childIds": [], "backendDOMNodeId": 578}, {"nodeId": "614", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Greek Yogurt Parfaits", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Greek Yogurt Parfaits"}}]}, "properties": [], "parentId": "557", "childIds": [], "backendDOMNodeId": 590}, {"nodeId": "615", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "559", "childIds": ["658"], "backendDOMNodeId": 595, "browsergym_id": "0cb8fea0-59b9-471d"}, {"nodeId": "616", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "559", "childIds": [], "backendDOMNodeId": 600}, {"nodeId": "617", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Diner-style fried eggs", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Diner-style fried eggs"}}]}, "properties": [], "parentId": "560", "childIds": [], "backendDOMNodeId": 612}, {"nodeId": "618", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "562", "childIds": ["659"], "backendDOMNodeId": 617, "browsergym_id": "f135bd82-7322-4bee"}, {"nodeId": "619", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "562", "childIds": [], "backendDOMNodeId": 622}, {"nodeId": "620", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "Mini frittatas", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "Mini frittatas"}}]}, "properties": [], "parentId": "563", "childIds": [], "backendDOMNodeId": 634}, {"nodeId": "621", "ignored": false, "role": {"type": "role", "value": "link"}, "chromeRole": {"type": "internalRole", "value": 110}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "contents", "value": {"type": "computedString", "value": "5"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [{"name": "focusable", "value": {"type": "booleanOrUndefined", "value": true}}], "parentId": "565", "childIds": ["660"], "backendDOMNodeId": 639, "browsergym_id": "0c5d0d86-9405-414a"}, {"nodeId": "622", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": ".", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "."}}]}, "properties": [], "parentId": "565", "childIds": [], "backendDOMNodeId": 644}, {"nodeId": "624", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "568", "childIds": ["661"], "backendDOMNodeId": 741, "browsergym_id": "0669e2bd-e30d-461f"}, {"nodeId": "625", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "569", "childIds": ["662"], "backendDOMNodeId": 746, "browsergym_id": "ddf67cb9-e0f7-4966"}, {"nodeId": "626", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home"}}]}, "properties": [], "parentId": "573", "childIds": [], "backendDOMNodeId": 326}, {"nodeId": "627", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["663"], "backendDOMNodeId": 329, "browsergym_id": "ed315a3b-3fbb-4535"}, {"nodeId": "628", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "574", "childIds": ["664"], "backendDOMNodeId": 332, "browsergym_id": "1a80d0e3-e2e4-4443"}, {"nodeId": "629", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "575", "childIds": [], "backendDOMNodeId": 335}, {"nodeId": "630", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "576", "childIds": [], "backendDOMNodeId": 337}, {"nodeId": "631", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)"}}]}, "properties": [], "parentId": "577", "childIds": [], "backendDOMNodeId": 344}, {"nodeId": "632", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["665"], "backendDOMNodeId": 347, "browsergym_id": "2bca0f26-f911-4e14"}, {"nodeId": "633", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "578", "childIds": ["666"], "backendDOMNodeId": 350, "browsergym_id": "5e70e550-40d9-4557"}, {"nodeId": "634", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "579", "childIds": [], "backendDOMNodeId": 353}, {"nodeId": "635", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "580", "childIds": [], "backendDOMNodeId": 355}, {"nodeId": "636", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right"}}]}, "properties": [], "parentId": "581", "childIds": [], "backendDOMNodeId": 362}, {"nodeId": "637", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["667"], "backendDOMNodeId": 365, "browsergym_id": "95219df4-5558-4819"}, {"nodeId": "638", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "582", "childIds": ["668"], "backendDOMNodeId": 368, "browsergym_id": "2c56cac0-24b7-4552"}, {"nodeId": "639", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "583", "childIds": [], "backendDOMNodeId": 371}, {"nodeId": "640", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "584", "childIds": [], "backendDOMNodeId": 373}, {"nodeId": "641", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist"}}]}, "properties": [], "parentId": "585", "childIds": [], "backendDOMNodeId": 380}, {"nodeId": "642", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["669"], "backendDOMNodeId": 383, "browsergym_id": "43cca39e-0022-4fc0"}, {"nodeId": "643", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "586", "childIds": ["670"], "backendDOMNodeId": 386, "browsergym_id": "9e4f1485-534c-4283"}, {"nodeId": "644", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "587", "childIds": [], "backendDOMNodeId": 389}, {"nodeId": "645", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "588", "childIds": [], "backendDOMNodeId": 391}, {"nodeId": "646", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "40 Easy Breakfast Ideas - A Couple Cooks"}}]}, "properties": [], "parentId": "589", "childIds": [], "backendDOMNodeId": 398}, {"nodeId": "647", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["671"], "backendDOMNodeId": 401, "browsergym_id": "4181bffb-648b-4373"}, {"nodeId": "648", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "590", "childIds": ["672"], "backendDOMNodeId": 404, "browsergym_id": "208023bb-e533-4054"}, {"nodeId": "649", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "\u00b7", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "\u00b7"}}]}, "properties": [], "parentId": "591", "childIds": [], "backendDOMNodeId": 407}, {"nodeId": "650", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "592", "childIds": [], "backendDOMNodeId": 409}, {"nodeId": "651", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "594", "childIds": ["673"], "backendDOMNodeId": 442, "browsergym_id": "bf41a1fb-86ed-47e7"}, {"nodeId": "652", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "597", "childIds": ["674"], "backendDOMNodeId": 464, "browsergym_id": "525fa878-50ba-4dc0"}, {"nodeId": "653", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "600", "childIds": ["675"], "backendDOMNodeId": 486, "browsergym_id": "1ee20641-c2c9-4a45"}, {"nodeId": "654", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "603", "childIds": ["676"], "backendDOMNodeId": 508, "browsergym_id": "d10e282e-1958-4f96"}, {"nodeId": "655", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "606", "childIds": ["677"], "backendDOMNodeId": 530, "browsergym_id": "26948cba-71e9-44a5"}, {"nodeId": "656", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "609", "childIds": ["678"], "backendDOMNodeId": 552, "browsergym_id": "f833002f-f527-4aed"}, {"nodeId": "657", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "612", "childIds": ["679"], "backendDOMNodeId": 574, "browsergym_id": "2619d1c2-adf6-4682"}, {"nodeId": "658", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "615", "childIds": ["680"], "backendDOMNodeId": 596, "browsergym_id": "0c549d5d-7194-4927"}, {"nodeId": "659", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "618", "childIds": ["681"], "backendDOMNodeId": 618, "browsergym_id": "4a344f00-0347-467c"}, {"nodeId": "660", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "621", "childIds": ["682"], "backendDOMNodeId": 640, "browsergym_id": "4b0a7571-d1a1-4b2f"}, {"nodeId": "661", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5 left. Reloads every 4 hours.", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5 left. Reloads every 4 hours."}}]}, "properties": [], "parentId": "624", "childIds": [], "backendDOMNodeId": 742}, {"nodeId": "662", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "625", "childIds": [], "backendDOMNodeId": 747, "browsergym_id": "3a40e1fd-2b4a-4f63"}, {"nodeId": "663", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "627", "childIds": ["683"], "backendDOMNodeId": 330, "browsergym_id": "12a3f3bd-35fd-48e4"}, {"nodeId": "664", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "tasteofhome", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "tasteofhome"}}]}, "properties": [], "parentId": "628", "childIds": [], "backendDOMNodeId": 333}, {"nodeId": "665", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "632", "childIds": ["684"], "backendDOMNodeId": 348, "browsergym_id": "62996fea-cc04-4c37"}, {"nodeId": "666", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "favfamilyrecipes", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "favfamilyrecipes"}}]}, "properties": [], "parentId": "633", "childIds": [], "backendDOMNodeId": 351}, {"nodeId": "667", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "637", "childIds": ["685"], "backendDOMNodeId": 366, "browsergym_id": "5683a5bd-85e2-4b20"}, {"nodeId": "668", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "goodhousekeeping", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "goodhousekeeping"}}]}, "properties": [], "parentId": "638", "childIds": [], "backendDOMNodeId": 369}, {"nodeId": "669", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "642", "childIds": ["686"], "backendDOMNodeId": 384, "browsergym_id": "892f29c6-6401-4700"}, {"nodeId": "670", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "greatist", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "greatist"}}]}, "properties": [], "parentId": "643", "childIds": [], "backendDOMNodeId": 387}, {"nodeId": "671", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "647", "childIds": ["687"], "backendDOMNodeId": 402, "browsergym_id": "116e6b00-d660-4879"}, {"nodeId": "672", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "acouplecooks", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "acouplecooks"}}]}, "properties": [], "parentId": "648", "childIds": [], "backendDOMNodeId": 405}, {"nodeId": "673", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "651", "childIds": ["688"], "backendDOMNodeId": 443, "browsergym_id": "fa1f6f9d-f96d-4162"}, {"nodeId": "674", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "652", "childIds": ["689"], "backendDOMNodeId": 465, "browsergym_id": "ae12b31b-0aac-4f3b"}, {"nodeId": "675", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "653", "childIds": ["690"], "backendDOMNodeId": 487, "browsergym_id": "1659752e-68dc-4a9b"}, {"nodeId": "676", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "654", "childIds": ["691"], "backendDOMNodeId": 509, "browsergym_id": "b25a8e82-12c5-4f9d"}, {"nodeId": "677", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "655", "childIds": ["692"], "backendDOMNodeId": 531, "browsergym_id": "54f58512-1745-416a"}, {"nodeId": "678", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "656", "childIds": ["693"], "backendDOMNodeId": 553, "browsergym_id": "5cd1cec3-63f7-4bb5"}, {"nodeId": "679", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "657", "childIds": ["694"], "backendDOMNodeId": 575, "browsergym_id": "5cc907b3-5010-4eca"}, {"nodeId": "680", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "658", "childIds": ["695"], "backendDOMNodeId": 597, "browsergym_id": "c223124f-5e5a-4068"}, {"nodeId": "681", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "659", "childIds": ["696"], "backendDOMNodeId": 619, "browsergym_id": "ad704739-a984-489c"}, {"nodeId": "682", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "660", "childIds": ["697"], "backendDOMNodeId": 641, "browsergym_id": "bd6ae1fd-313a-4fd2"}, {"nodeId": "683", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "tasteofhome.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "tasteofhome.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "tasteofhome.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "663", "childIds": [], "backendDOMNodeId": 331, "browsergym_id": "ef7e2444-275e-41cb"}, {"nodeId": "684", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "favfamilyrecipes.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "favfamilyrecipes.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "favfamilyrecipes.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "665", "childIds": [], "backendDOMNodeId": 349, "browsergym_id": "d0f59419-2518-4654"}, {"nodeId": "685", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "goodhousekeeping.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "goodhousekeeping.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "goodhousekeeping.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "667", "childIds": [], "backendDOMNodeId": 367, "browsergym_id": "4b8a4caa-fa92-4797"}, {"nodeId": "686", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "greatist.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "greatist.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "greatist.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "669", "childIds": [], "backendDOMNodeId": 385, "browsergym_id": "1fef1718-b08f-4905"}, {"nodeId": "687", "ignored": false, "role": {"type": "role", "value": "image"}, "chromeRole": {"type": "internalRole", "value": 99}, "name": {"type": "computedString", "value": "acouplecooks.com favicon", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "value": {"type": "computedString", "value": "acouplecooks.com favicon"}, "attribute": "alt", "attributeValue": {"type": "string", "value": "acouplecooks.com favicon"}}, {"type": "attribute", "attribute": "title", "superseded": true}]}, "properties": [], "parentId": "671", "childIds": [], "backendDOMNodeId": 403, "browsergym_id": "d454e062-474a-4f3d"}, {"nodeId": "688", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "673", "childIds": ["698"], "backendDOMNodeId": 444, "browsergym_id": "eee8ae26-c754-41d4"}, {"nodeId": "689", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "674", "childIds": ["699"], "backendDOMNodeId": 466, "browsergym_id": "30565224-05bc-42b7"}, {"nodeId": "690", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "675", "childIds": ["700"], "backendDOMNodeId": 488, "browsergym_id": "22a3d0a6-f68b-497a"}, {"nodeId": "691", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "676", "childIds": ["701"], "backendDOMNodeId": 510, "browsergym_id": "bf77f859-60c5-4721"}, {"nodeId": "692", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "677", "childIds": ["702"], "backendDOMNodeId": 532, "browsergym_id": "69f4b68b-ed9c-4613"}, {"nodeId": "693", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "678", "childIds": ["703"], "backendDOMNodeId": 554, "browsergym_id": "71836839-1725-463e"}, {"nodeId": "694", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "679", "childIds": ["704"], "backendDOMNodeId": 576, "browsergym_id": "e5a23b4c-50a9-4b65"}, {"nodeId": "695", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "680", "childIds": ["705"], "backendDOMNodeId": 598, "browsergym_id": "c44ad642-bf7f-4c9d"}, {"nodeId": "696", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "681", "childIds": ["706"], "backendDOMNodeId": 620, "browsergym_id": "7572012a-e89a-4b59"}, {"nodeId": "697", "ignored": false, "role": {"type": "role", "value": "generic"}, "chromeRole": {"type": "internalRole", "value": 88}, "name": {"type": "computedString", "value": "", "sources": [{"type": "relatedElement", "attribute": "aria-labelledby"}, {"type": "attribute", "attribute": "aria-label"}, {"type": "attribute", "attribute": "title"}]}, "properties": [], "parentId": "682", "childIds": ["707"], "backendDOMNodeId": 642, "browsergym_id": "1befafbc-1ff1-44fa"}, {"nodeId": "698", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "688", "childIds": [], "backendDOMNodeId": 445}, {"nodeId": "699", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "689", "childIds": [], "backendDOMNodeId": 467}, {"nodeId": "700", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "690", "childIds": [], "backendDOMNodeId": 489}, {"nodeId": "701", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "1", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "1"}}]}, "properties": [], "parentId": "691", "childIds": [], "backendDOMNodeId": 511}, {"nodeId": "702", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "2", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "2"}}]}, "properties": [], "parentId": "692", "childIds": [], "backendDOMNodeId": 533}, {"nodeId": "703", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "3", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "3"}}]}, "properties": [], "parentId": "693", "childIds": [], "backendDOMNodeId": 555}, {"nodeId": "704", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "4", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "4"}}]}, "properties": [], "parentId": "694", "childIds": [], "backendDOMNodeId": 577}, {"nodeId": "705", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "695", "childIds": [], "backendDOMNodeId": 599}, {"nodeId": "706", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "696", "childIds": [], "backendDOMNodeId": 621}, {"nodeId": "707", "ignored": false, "role": {"type": "internalRole", "value": "StaticText"}, "chromeRole": {"type": "internalRole", "value": 158}, "name": {"type": "computedString", "value": "5", "sources": [{"type": "contents", "value": {"type": "computedString", "value": "5"}}]}, "properties": [], "parentId": "697", "childIds": [], "backendDOMNodeId": 643}]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-0.json b/demonstrations/ieckqwf/bboxes/bboxes-0.json new file mode 100644 index 0000000000000000000000000000000000000000..0f4f79f6622c43d46e2cde37e34c325f0b884cd4 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-0.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":0,"width":1280,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":0,"width":1280,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":0,"width":1280,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":0,"width":1280,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":0},"cd32e158-bf7d-4fe6":{"x":0,"y":0,"width":1280,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":0},"78b6b6a5-0b99-455c":{"x":0,"y":0,"width":1280,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":0},"36f7f7fe-3764-461d":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"fc92eca9-4a19-42a2":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"f3bd5b44-ef51-45d9":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"254c0c74-7c1e-48f9":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"982a67e0-d281-4c01":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"54fb5708-2f6c-4763":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"d694d4cc-7b32-4071":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"2432bc01-9a56-48f7":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"118ed908-66b4-4376":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"08510788-1306-418a":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1eed6abb-7b52-46a1":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"14caeb76-1117-481d":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"7f83c7fd-f43e-40e2":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"696c254d-720b-4b4e":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"7b06e7cf-df1e-4867":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"9fe14458-919b-417e":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"54cc632d-aca7-4ae1":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"02e0f2c2-3053-4850":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"974cc7cf-0029-469e":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"4bbcc66c-6638-4bec":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"f50e801b-3629-407b":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"7c98c428-fc33-486a":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"aac3d400-2aac-4ede":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"deffe4b4-5165-4230":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"2156b21e-b63d-4042":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"7133636b-1e96-46be":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"1d5a176f-7bb3-4c31":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"62137fc5-7e3e-4050":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"4ef1b7e8-308c-48fd":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"5979c970-2497-423d":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"841f3576-60c4-4ab1":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"bbe45547-cd30-41fa":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"4d732c2f-6184-4e10":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"65283f97-3087-4e57":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"874b45bb-6779-4bc0":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"6a3bbc48-4bdb-427f":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"16bed713-3410-4768":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"540f04bd-bbda-4878":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"86762a19-35da-47aa":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"3948bdbe-544c-4f87":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"d1ff60bb-df2e-472b":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"4a2ceb1a-a33b-4cb1":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"d01fd702-56b0-4ac5":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"23ed5249-e225-4fa4":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"35a58ac8-66f2-485d":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"60396e3a-4a16-433d":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"aec6b401-c56e-4de4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"5aca3c6f-dce0-4001":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"511aff8a-921d-46af":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"9701f499-cb05-47eb":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"3be2397e-c401-4436":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"4fecf074-d089-41ff":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"a13861d4-ba6c-4495":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"39f7eac4-5c6a-4772":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f9e51292-7fd6-446c":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f19f83f3-fa66-49e8":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"6844d2a6-af2d-4c75":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"791bcd8d-36e1-4edb":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e29c49e0-8fa1-4c38":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"5c2991eb-f2cf-477a":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"13b4a90c-a83c-4bc4":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36dbac9a-afc5-4d47":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"ac315643-c049-4fd9":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"874fef8f-1977-4a10":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"dfbb3f25-bb84-4f63":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"0ba45776-ac4f-4719":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"a25350b6-358a-43e9":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"f9ef3683-1794-4a71":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"ab25083e-b0a1-4a37":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"9557099a-f3b8-4c62":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"58f91be3-fd34-4e6a":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"dca33616-21d6-43c6":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"77321606-7eaf-4c85":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"926b1601-570f-40df":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"1ca9e89e-5f60-4393":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"39ae7d37-491e-4b24":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"6c8f6539-6dc5-4dec":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"70e060eb-019e-4248":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"305c7981-e98b-4663":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"ba1bdf84-d118-47c5":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"87578e1a-00d6-470f":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"512555ef-95c6-4597":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"d5c08d4a-6395-4617":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"76d428d2-2394-4d81":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"e1331318-4ea9-40aa":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"78ee9203-cd47-4c50":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"069ebe5c-26f9-4681":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"977d481f-1a4e-49a0":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"ac5cf0ec-acc1-4fd9":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"38b67273-14b2-4acd":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"da26e1d2-4dfb-4168":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"4e1e2c47-bd7b-45d7":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"f0ff3723-f4ec-478e":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"8af0a625-6f78-4bf9":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"23e6c67f-538a-48fa":{"x":220,"y":0,"width":1060,"height":601.3333740234375,"top":0,"right":1280,"bottom":601.3333740234375,"left":220},"d7dbe331-1136-4942":{"x":220,"y":8,"width":1044,"height":577.3333740234375,"top":8,"right":1264,"bottom":585.3333740234375,"left":220},"292382b6-891e-4f35":{"x":220,"y":8,"width":1044,"height":577.3333740234375,"top":8,"right":1264,"bottom":585.3333740234375,"left":220},"3ae41f7d-4ef3-4a6b":{"x":358,"y":8,"width":768,"height":577.3333740234375,"top":8,"right":1126,"bottom":585.3333740234375,"left":358},"d0e7cb3d-67b2-4718":{"x":382,"y":32,"width":720,"height":529.3333740234375,"top":32,"right":1102,"bottom":561.3333740234375,"left":382},"88bc98c9-682f-4a7c":{"x":382,"y":32,"width":720,"height":509.3333435058594,"top":32,"right":1102,"bottom":541.3333435058594,"left":382},"6f6ed6a6-ecd1-4fd2":{"x":382,"y":172,"width":720,"height":181.33334350585938,"top":172,"right":1102,"bottom":353.3333435058594,"left":382},"b0f204e3-c5e6-45f2":{"x":382,"y":172,"width":720,"height":181.33334350585938,"top":172,"right":1102,"bottom":353.3333435058594,"left":382},"8f01080f-b495-4164":{"x":382,"y":172,"width":720,"height":44,"top":172,"right":1102,"bottom":216,"left":382},"995fa0fa-01b7-42c9":{"x":382,"y":172,"width":720,"height":40,"top":172,"right":1102,"bottom":212,"left":382},"066922a4-0124-47e7":{"x":487.875,"y":166.6666717529297,"width":508.25,"height":50.66666793823242,"top":166.6666717529297,"right":996.125,"bottom":217.3333396911621,"left":487.875},"0f69e67d-86a8-4f30":{"x":382,"y":240,"width":720,"height":113.33333587646484,"top":240,"right":1102,"bottom":353.33333587646484,"left":382},"dd251788-f248-4460":{"x":382,"y":240,"width":720,"height":113.33333587646484,"top":240,"right":1102,"bottom":353.33333587646484,"left":382},"72b846e3-6f2c-4231":{"x":382,"y":240,"width":720,"height":113.33333587646484,"top":240,"right":1102,"bottom":353.33333587646484,"left":382},"5162a21b-4c4f-4966":{"x":382,"y":240,"width":720,"height":113.33333587646484,"top":240,"right":1102,"bottom":353.33333587646484,"left":382},"e38a11d2-043f-4060":{"x":382,"y":240,"width":720,"height":113.33333587646484,"top":240,"right":1102,"bottom":353.33333587646484,"left":382},"078fd3ba-57eb-46f7":{"x":382,"y":240,"width":720,"height":113.33333587646484,"top":240,"right":1102,"bottom":353.33333587646484,"left":382},"0c4f6071-3e06-432c":{"x":383,"y":340.3333435058594,"width":718,"height":12,"top":340.3333435058594,"right":1101,"bottom":352.3333435058594,"left":383},"6acf4fbb-5415-4a8f":{"x":383,"y":312.3333435058594,"width":86.60417175292969,"height":32,"top":312.3333435058594,"right":469.6041717529297,"bottom":344.3333435058594,"left":383},"4968d965-2764-4479":{"x":387,"y":312.3333435058594,"width":78.60417175292969,"height":32,"top":312.3333435058594,"right":465.6041717529297,"bottom":344.3333435058594,"left":387},"18f4c0c3-6644-4b9d":{"x":387,"y":312.3333435058594,"width":78.60417175292969,"height":32,"top":312.3333435058594,"right":465.6041717529297,"bottom":344.3333435058594,"left":387},"4f6d86bd-f846-47f1":{"x":387,"y":312.3333435058594,"width":78.60417175292969,"height":32,"top":312.3333435058594,"right":465.6041717529297,"bottom":344.3333435058594,"left":387},"ee746fe9-4770-4f10":{"x":395,"y":321.3333435058594,"width":62.60416793823242,"height":14,"top":321.3333435058594,"right":457.6041679382324,"bottom":335.3333435058594,"left":395},"7bcb9ab7-960f-4437":{"x":395,"y":321.3333435058594,"width":17.5,"height":14,"top":321.3333435058594,"right":412.5,"bottom":335.3333435058594,"left":395},"8eebe3f6-b982-4e10":{"x":396.75,"y":321.3333435058594,"width":14,"height":14,"top":321.3333435058594,"right":410.75,"bottom":335.3333435058594,"left":396.75},"eb8617c6-fd7c-403c":{"x":416.5,"y":321.3333435058594,"width":41.10416793823242,"height":14,"top":321.3333435058594,"right":457.6041679382324,"bottom":335.3333435058594,"left":416.5},"aab1d01a-7a90-45db":{"x":926.8854370117188,"y":312.3333435058594,"width":166.11459350585938,"height":32,"top":312.3333435058594,"right":1093.0000305175781,"bottom":344.3333435058594,"left":926.8854370117188},"a4531ccd-1d45-4583":{"x":934.8854370117188,"y":312.3333435058594,"width":110.11458587646484,"height":32,"top":312.3333435058594,"right":1045.0000228881836,"bottom":344.3333435058594,"left":934.8854370117188},"8d7b83b7-4414-4319":{"x":869.03125,"y":285.9375,"width":241.8229217529297,"height":24,"top":285.9375,"right":1110.8541717529297,"bottom":309.9375,"left":869.03125},"101e8ecf-8a82-41af":{"x":869.03125,"y":285.9375,"width":241.8229217529297,"height":24,"top":285.9375,"right":1110.8541717529297,"bottom":309.9375,"left":869.03125},"e819b2e8-e0b5-44da":{"x":877.03125,"y":289.9375,"width":225.8229217529297,"height":16,"top":289.9375,"right":1102.8541717529297,"bottom":305.9375,"left":877.03125},"728bc932-3b30-4a42":{"x":877.03125,"y":289.2708435058594,"width":225.8229217529297,"height":16.666667938232422,"top":289.2708435058594,"right":1102.8541717529297,"bottom":305.9375114440918,"left":877.03125},"c81c72f1-941f-492d":{"x":942.8854370117188,"y":316.66668701171875,"width":94.11458587646484,"height":23.33333396911621,"top":316.66668701171875,"right":1037.0000228881836,"bottom":340.00002098083496,"left":942.8854370117188},"0fedac88-dbfa-44b2":{"x":942.8854370117188,"y":316.66668701171875,"width":39.333335876464844,"height":23.33333396911621,"top":316.66668701171875,"right":982.2187728881836,"bottom":340.00002098083496,"left":942.8854370117188},"f43e3a19-e2bf-49bf":{"x":942.8854370117188,"y":316.66668701171875,"width":39.333335876464844,"height":23.33333396911621,"top":316.66668701171875,"right":982.2187728881836,"bottom":340.00002098083496,"left":942.8854370117188},"17bc3506-8f50-49b3":{"x":946.5521240234375,"y":320.3333435058594,"width":32,"height":16,"top":320.3333435058594,"right":978.5521240234375,"bottom":336.3333435058594,"left":946.5521240234375},"dbf5b0cd-52d0-4f85":{"x":946.5521240234375,"y":320.3333435058594,"width":16,"height":16,"top":320.3333435058594,"right":962.5521240234375,"bottom":336.3333435058594,"left":946.5521240234375},"34bb1f9e-7363-467f":{"x":986.21875,"y":321.3333435058594,"width":50.78125,"height":14,"top":321.3333435058594,"right":1037,"bottom":335.3333435058594,"left":986.21875},"ba88fb3c-ca72-44ef":{"x":1053,"y":312.3333435058594,"width":32,"height":32,"top":312.3333435058594,"right":1085,"bottom":344.3333435058594,"left":1053},"dc5f7734-bcc2-47ef":{"x":1060.25,"y":321.3333435058594,"width":17.5,"height":14,"top":321.3333435058594,"right":1077.75,"bottom":335.3333435058594,"left":1060.25},"becafe4b-4eb8-4d7a":{"x":1060.25,"y":321.3333435058594,"width":17.5,"height":14,"top":321.3333435058594,"right":1077.75,"bottom":335.3333435058594,"left":1060.25},"48c6acec-d4a1-440e":{"x":1062.875,"y":323.15716552734375,"width":12.176188468933105,"height":10.352335929870605,"top":323.15716552734375,"right":1075.051188468933,"bottom":333.50950145721436,"left":1062.875},"03654b07-d68d-44bd":{"x":382,"y":541.3333740234375,"width":720,"height":20,"top":541.3333740234375,"right":1102,"bottom":561.3333740234375,"left":382},"80f98f9e-70ce-4dbb":{"x":382,"y":541.3333740234375,"width":720,"height":20,"top":541.3333740234375,"right":1102,"bottom":561.3333740234375,"left":382},"d2a5d1c8-7977-41ae":{"x":382,"y":541.3333740234375,"width":720,"height":20,"top":541.3333740234375,"right":1102,"bottom":561.3333740234375,"left":382},"1c0d97e3-f39d-4139":{"x":545.7604370117188,"y":541.3333740234375,"width":46.708335876464844,"height":20,"top":541.3333740234375,"right":592.4687728881836,"bottom":561.3333740234375,"left":545.7604370117188},"226044d2-2f20-436a":{"x":545.7604370117188,"y":541.3333740234375,"width":46.708335876464844,"height":20,"top":541.3333740234375,"right":592.4687728881836,"bottom":561.3333740234375,"left":545.7604370117188},"0b5860a2-11f1-489b":{"x":608.46875,"y":541.3333740234375,"width":41.91666793823242,"height":20,"top":541.3333740234375,"right":650.3854179382324,"bottom":561.3333740234375,"left":608.46875},"3fbec7f9-1887-4510":{"x":608.46875,"y":541.3333740234375,"width":41.91666793823242,"height":20,"top":541.3333740234375,"right":650.3854179382324,"bottom":561.3333740234375,"left":608.46875},"add51d8e-eb29-43ab":{"x":666.3854370117188,"y":541.3333740234375,"width":30.45833396911621,"height":20,"top":541.3333740234375,"right":696.843770980835,"bottom":561.3333740234375,"left":666.3854370117188},"6df616a4-8743-4a9d":{"x":666.3854370117188,"y":541.3333740234375,"width":30.45833396911621,"height":20,"top":541.3333740234375,"right":696.843770980835,"bottom":561.3333740234375,"left":666.3854370117188},"6475b438-e952-4f1b":{"x":712.84375,"y":541.3333740234375,"width":94.55208587646484,"height":20,"top":541.3333740234375,"right":807.3958358764648,"bottom":561.3333740234375,"left":712.84375},"430e702d-cab9-4368":{"x":712.84375,"y":541.3333740234375,"width":94.55208587646484,"height":20,"top":541.3333740234375,"right":807.3958358764648,"bottom":561.3333740234375,"left":712.84375},"8c07ff13-1521-475c":{"x":823.3958740234375,"y":541.3333740234375,"width":114.84375,"height":20,"top":541.3333740234375,"right":938.2396240234375,"bottom":561.3333740234375,"left":823.3958740234375},"53c4e00c-3870-46c4":{"x":823.3958740234375,"y":541.3333740234375,"width":114.84375,"height":20,"top":541.3333740234375,"right":938.2396240234375,"bottom":561.3333740234375,"left":823.3958740234375}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-12.json b/demonstrations/ieckqwf/bboxes/bboxes-12.json new file mode 100644 index 0000000000000000000000000000000000000000..b0fff89155acc25f30dc27f55e616c91d52068a2 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-12.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"5a04f383-796a-4127":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-120.66667175292969,"width":220,"height":2310.125,"top":-120.66667175292969,"right":220,"bottom":2189.4583282470703,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-120.66667175292969,"width":1043.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":220},"99a62f96-6364-402f":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"196f9843-9577-4c93":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-59.66666793823242,"width":1027.3333740234375,"height":2233.125,"top":-59.66666793823242,"right":1247.3333740234375,"bottom":2173.4583320617676,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2085.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2049.4583320617676,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2053.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2017.4583320617676,"left":349.66668701171875},"5df3a481-a910-4a30":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"323c736f-d631-435a":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"03ad161a-44a1-4905":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"9c7be7cc-0dd0-4522":{"x":349.66668701171875,"y":44.333335876464844,"width":768,"height":152,"top":44.333335876464844,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"ac182ce0-1577-439c":{"x":349.66668701171875,"y":44.333335876464844,"width":768,"height":24,"top":44.333335876464844,"right":1117.6666870117188,"bottom":68.33333587646484,"left":349.66668701171875},"8558afe9-c0d2-411e":{"x":349.66668701171875,"y":44.333335876464844,"width":128.34375,"height":24,"top":44.333335876464844,"right":478.01043701171875,"bottom":68.33333587646484,"left":349.66668701171875},"06f9f96c-ff49-420a":{"x":349.66668701171875,"y":48.333335876464844,"width":14,"height":16,"top":48.333335876464844,"right":363.66668701171875,"bottom":64.33333587646484,"left":349.66668701171875},"d8b27842-14d9-45a7":{"x":350.16668701171875,"y":48.333335876464844,"width":13,"height":16,"top":48.333335876464844,"right":363.16668701171875,"bottom":64.33333587646484,"left":350.16668701171875},"bcf43bb7-33c1-4fc1":{"x":371.66668701171875,"y":44.333335876464844,"width":106.34375,"height":24,"top":44.333335876464844,"right":478.01043701171875,"bottom":68.33333587646484,"left":371.66668701171875},"fe7b0910-2cc5-4f44":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"370e6816-b4f3-441e":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"5fde6a21-a20f-4c16":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"a73f94e4-2be1-468e":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"a296e17a-3fbf-4fbe":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"40223ff2-ec67-44bb":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"45a2b5e0-6e0f-4609":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"ec685cad-2276-4dfe":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":527.6666870117188,"bottom":132.33333587646484,"left":357.66668701171875},"b46f8877-710e-4581":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":527.6666870117188,"bottom":108.33333587646484,"left":357.66668701171875},"c3a6512d-dbb1-404e":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":527.6666870117188,"bottom":108.33333587646484,"left":357.66668701171875},"56bb96c0-9d6f-439e":{"x":357.66668701171875,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":527.6666870117188,"bottom":132.33333587646484,"left":357.66668701171875},"caac51c4-cf29-4be9":{"x":357.66668701171875,"y":112.33333587646484,"width":97.83333587646484,"height":16,"top":112.33333587646484,"right":455.5000228881836,"bottom":128.33333587646484,"left":357.66668701171875},"ed315a3b-3fbb-4535":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"12a3f3bd-35fd-48e4":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"ef7e2444-275e-41cb":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"1a80d0e3-e2e4-4443":{"x":377.66668701171875,"y":112.33333587646484,"width":77.83333587646484,"height":16,"top":112.33333587646484,"right":455.5000228881836,"bottom":128.33333587646484,"left":377.66668701171875},"a48a9f2d-2e92-431a":{"x":459.5,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":463.40625,"bottom":132.33333587646484,"left":459.5},"127e909d-96b9-4103":{"x":467.40625,"y":112.33333587646484,"width":4.208333492279053,"height":16,"top":112.33333587646484,"right":471.61458349227905,"bottom":128.33333587646484,"left":467.40625},"fec27fa8-aef4-42a9":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"a917b887-1bea-4203":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"d62b89c4-22f1-4177":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"9fdafbad-19d2-4ad2":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":721.6666870117188,"bottom":132.33333587646484,"left":551.6666870117188},"676aea97-b445-4e7e":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":721.6666870117188,"bottom":108.33333587646484,"left":551.6666870117188},"afb00160-bf5d-4cee":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":721.6666870117188,"bottom":108.33333587646484,"left":551.6666870117188},"0bda2a5c-95d2-426f":{"x":551.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":721.6666870117188,"bottom":132.33333587646484,"left":551.6666870117188},"fefe87b1-9278-4e85":{"x":551.6666870117188,"y":112.33333587646484,"width":121.27083587646484,"height":16,"top":112.33333587646484,"right":672.9375228881836,"bottom":128.33333587646484,"left":551.6666870117188},"2bca0f26-f911-4e14":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"62996fea-cc04-4c37":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"d0f59419-2518-4654":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"5e70e550-40d9-4557":{"x":571.6666870117188,"y":112.33333587646484,"width":101.27083587646484,"height":16,"top":112.33333587646484,"right":672.9375228881836,"bottom":128.33333587646484,"left":571.6666870117188},"c6588d87-4279-4789":{"x":676.9375,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":680.84375,"bottom":132.33333587646484,"left":676.9375},"08f2aedb-ea0b-42ce":{"x":684.84375,"y":112.33333587646484,"width":6.927083492279053,"height":16,"top":112.33333587646484,"right":691.770833492279,"bottom":128.33333587646484,"left":684.84375},"781a4dea-b71f-4339":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"9ab0924f-002a-4131":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"41332a3e-8183-42b7":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"fb5bd943-9d4b-498b":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":915.6666870117188,"bottom":132.33333587646484,"left":745.6666870117188},"91c48008-66f6-4822":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":915.6666870117188,"bottom":108.33333587646484,"left":745.6666870117188},"7fc3a830-7aea-4b6b":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":915.6666870117188,"bottom":108.33333587646484,"left":745.6666870117188},"c69d470c-b20e-43c0":{"x":745.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":915.6666870117188,"bottom":132.33333587646484,"left":745.6666870117188},"89a25add-4f94-4257":{"x":745.6666870117188,"y":112.33333587646484,"width":137.3125,"height":16,"top":112.33333587646484,"right":882.9791870117188,"bottom":128.33333587646484,"left":745.6666870117188},"95219df4-5558-4819":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"5683a5bd-85e2-4b20":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"4b8a4caa-fa92-4797":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"2c56cac0-24b7-4552":{"x":765.6666870117188,"y":112.33333587646484,"width":117.3125,"height":16,"top":112.33333587646484,"right":882.9791870117188,"bottom":128.33333587646484,"left":765.6666870117188},"4ddbc830-f8c6-4938":{"x":886.9791870117188,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":890.8854370117188,"bottom":132.33333587646484,"left":886.9791870117188},"35380cbf-159b-4c1f":{"x":894.8854370117188,"y":112.33333587646484,"width":7.1354169845581055,"height":16,"top":112.33333587646484,"right":902.0208539962769,"bottom":128.33333587646484,"left":894.8854370117188},"3cf6dcc3-2dca-4390":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"bf09bc69-cf90-4c54":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"f7f10518-f6a2-40ab":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"773ad79f-ae38-49d6":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":1109.6666870117188,"bottom":132.33333587646484,"left":939.6666870117188},"c289791c-7f08-4dd6":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":1109.6666870117188,"bottom":108.33333587646484,"left":939.6666870117188},"44b18b34-feac-4e3a":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":1109.6666870117188,"bottom":108.33333587646484,"left":939.6666870117188},"846721d4-3cf2-428c":{"x":939.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":1109.6666870117188,"bottom":132.33333587646484,"left":939.6666870117188},"20a09b68-f784-477e":{"x":939.6666870117188,"y":112.33333587646484,"width":66.79167175292969,"height":16,"top":112.33333587646484,"right":1006.4583587646484,"bottom":128.33333587646484,"left":939.6666870117188},"43cca39e-0022-4fc0":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"892f29c6-6401-4700":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"1fef1718-b08f-4905":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"9e4f1485-534c-4283":{"x":959.6666870117188,"y":112.33333587646484,"width":46.79166793823242,"height":16,"top":112.33333587646484,"right":1006.4583549499512,"bottom":128.33333587646484,"left":959.6666870117188},"b5b4164a-f4c1-45d4":{"x":1010.4583740234375,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":1014.3646240234375,"bottom":132.33333587646484,"left":1010.4583740234375},"5a6b1ec7-5ede-4c66":{"x":1018.3646240234375,"y":112.33333587646484,"width":7.770833492279053,"height":16,"top":112.33333587646484,"right":1026.1354575157166,"bottom":128.33333587646484,"left":1018.3646240234375},"5456479d-7e77-4ec9":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"039eefbc-512d-4f3b":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"64bd20ee-4420-43c3":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"1db606b7-036d-431d":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":40,"top":152.33334350585938,"right":527.6666870117188,"bottom":192.33334350585938,"left":357.66668701171875},"30f04103-6371-48f2":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":16,"top":152.33334350585938,"right":527.6666870117188,"bottom":168.33334350585938,"left":357.66668701171875},"bb8889c9-609c-456b":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":16,"top":152.33334350585938,"right":527.6666870117188,"bottom":168.33334350585938,"left":357.66668701171875},"32542a4a-51b0-4ad2":{"x":357.66668701171875,"y":168.33334350585938,"width":170,"height":24,"top":168.33334350585938,"right":527.6666870117188,"bottom":192.33334350585938,"left":357.66668701171875},"af0080d4-ffa5-4cb9":{"x":357.66668701171875,"y":172.33334350585938,"width":105.0625,"height":16,"top":172.33334350585938,"right":462.72918701171875,"bottom":188.33334350585938,"left":357.66668701171875},"4181bffb-648b-4373":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"116e6b00-d660-4879":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"d454e062-474a-4f3d":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"208023bb-e533-4054":{"x":377.66668701171875,"y":172.33334350585938,"width":85.0625,"height":16,"top":172.33334350585938,"right":462.72918701171875,"bottom":188.33334350585938,"left":377.66668701171875},"5999ad85-9f25-4c7e":{"x":466.72918701171875,"y":168.33334350585938,"width":3.90625,"height":24,"top":168.33334350585938,"right":470.63543701171875,"bottom":192.33334350585938,"left":466.72918701171875},"d6d5cffd-7197-40c6":{"x":474.63543701171875,"y":172.33334350585938,"width":7.677083492279053,"height":16,"top":172.33334350585938,"right":482.3125205039978,"bottom":188.33334350585938,"left":474.63543701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":1595.125,"top":220.33334350585938,"right":1117.6666870117188,"bottom":1815.4583435058594,"left":349.66668701171875},"9b1f0199-999b-4b05":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":32,"top":220.33334350585938,"right":1117.6666870117188,"bottom":252.33334350585938,"left":349.66668701171875},"4bac0e14-1da6-4aa6":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":24,"top":220.33334350585938,"right":1117.6666870117188,"bottom":244.33334350585938,"left":349.66668701171875},"262690b6-c5ce-4cce":{"x":349.66668701171875,"y":220.33334350585938,"width":87.30208587646484,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":349.66668701171875},"5d65b1cc-92a6-4e49":{"x":349.66668701171875,"y":220.33334350585938,"width":87.30208587646484,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":349.66668701171875},"3d35c129-9293-4201":{"x":349.66668701171875,"y":220.33334350585938,"width":20,"height":24,"top":220.33334350585938,"right":369.66668701171875,"bottom":244.33334350585938,"left":349.66668701171875},"41d62912-c7c8-421a":{"x":349.66668701171875,"y":223.6666717529297,"width":20,"height":16,"top":223.6666717529297,"right":369.66668701171875,"bottom":239.6666717529297,"left":349.66668701171875},"d05a1854-6f39-424d":{"x":352.66668701171875,"y":224.6666717529297,"width":14,"height":14,"top":224.6666717529297,"right":366.66668701171875,"bottom":238.6666717529297,"left":352.66668701171875},"411509c0-5b02-4dd4":{"x":377.66668701171875,"y":220.33334350585938,"width":59.302085876464844,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":377.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":253,"width":768,"height":634,"top":253,"right":1117.6666870117188,"bottom":887,"left":349.66668701171875},"60e543e9-3c49-4101":{"x":349.66668701171875,"y":253,"width":514.625,"height":22,"top":253,"right":864.2916870117188,"bottom":275,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":284.3333435058594,"width":768,"height":572,"top":284.3333435058594,"right":1117.6666870117188,"bottom":856.3333435058594,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":284.3333435058594,"width":742,"height":50,"top":284.3333435058594,"right":1117.6666870117188,"bottom":334.3333435058594,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":285,"width":708.4896240234375,"height":46,"top":285,"right":1090.1563110351562,"bottom":331,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":285,"width":283.57293701171875,"height":22,"top":285,"right":665.2396240234375,"bottom":307,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":285,"width":283.57293701171875,"height":22,"top":285,"right":665.2396240234375,"bottom":307,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":285,"width":708.4896240234375,"height":46,"top":285,"right":1090.1563110351562,"bottom":331,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":309,"width":23.36458396911621,"height":22,"top":309,"right":730.062520980835,"bottom":331,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":309,"width":23.36458396911621,"height":22,"top":309,"right":730.062520980835,"bottom":331,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":309,"width":16,"height":22,"top":309,"right":726.6979370117188,"bottom":331,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":305.54168701171875,"width":16,"height":24,"top":305.54168701171875,"right":726.6979370117188,"bottom":329.54168701171875,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":305.54168701171875,"width":16,"height":24,"top":305.54168701171875,"right":726.6979370117188,"bottom":329.54168701171875,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":309.54168701171875,"width":16,"height":16,"top":309.54168701171875,"right":726.6979370117188,"bottom":325.54168701171875,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":342.3333435058594,"width":742,"height":50,"top":342.3333435058594,"right":1117.6666870117188,"bottom":392.3333435058594,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":343,"width":728.6979370117188,"height":46,"top":343,"right":1110.3646240234375,"bottom":389,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":343,"width":289.28125,"height":22,"top":343,"right":670.9479370117188,"bottom":365,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":343,"width":289.28125,"height":22,"top":343,"right":670.9479370117188,"bottom":365,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":343,"width":728.6979370117188,"height":46,"top":343,"right":1110.3646240234375,"bottom":389,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":367,"width":23.36458396911621,"height":22,"top":367,"right":726.718770980835,"bottom":389,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":367,"width":23.36458396911621,"height":22,"top":367,"right":726.718770980835,"bottom":389,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":367,"width":16,"height":22,"top":367,"right":723.3541870117188,"bottom":389,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":363.54168701171875,"width":16,"height":24,"top":363.54168701171875,"right":723.3541870117188,"bottom":387.54168701171875,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":363.54168701171875,"width":16,"height":24,"top":363.54168701171875,"right":723.3541870117188,"bottom":387.54168701171875,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":367.54168701171875,"width":16,"height":16,"top":367.54168701171875,"right":723.3541870117188,"bottom":383.54168701171875,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":400.3333435058594,"width":742,"height":50,"top":400.3333435058594,"right":1117.6666870117188,"bottom":450.3333435058594,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":401,"width":659.8125,"height":46,"top":401,"right":1041.4791870117188,"bottom":447,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":401,"width":173.875,"height":22,"top":401,"right":555.5416870117188,"bottom":423,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":401,"width":173.875,"height":22,"top":401,"right":555.5416870117188,"bottom":423,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":401,"width":659.8125,"height":46,"top":401,"right":1041.4791870117188,"bottom":447,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":425,"width":23.36458396911621,"height":22,"top":425,"right":481.0520839691162,"bottom":447,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":425,"width":23.36458396911621,"height":22,"top":425,"right":481.0520839691162,"bottom":447,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":425,"width":16,"height":22,"top":425,"right":477.6875,"bottom":447,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":421.54168701171875,"width":16,"height":24,"top":421.54168701171875,"right":477.6875,"bottom":445.54168701171875,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":421.54168701171875,"width":16,"height":24,"top":421.54168701171875,"right":477.6875,"bottom":445.54168701171875,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":425.54168701171875,"width":16,"height":16,"top":425.54168701171875,"right":477.6875,"bottom":441.54168701171875,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":458.3333435058594,"width":742,"height":50,"top":458.3333435058594,"right":1117.6666870117188,"bottom":508.3333435058594,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":459,"width":659.625,"height":46,"top":459,"right":1041.2916870117188,"bottom":505,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":459,"width":193.30209350585938,"height":22,"top":459,"right":574.9687805175781,"bottom":481,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":459,"width":193.30209350585938,"height":22,"top":459,"right":574.9687805175781,"bottom":481,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":459,"width":659.625,"height":46,"top":459,"right":1041.2916870117188,"bottom":505,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":483,"width":23.36458396911621,"height":22,"top":483,"right":621.5208339691162,"bottom":505,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":483,"width":23.36458396911621,"height":22,"top":483,"right":621.5208339691162,"bottom":505,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":483,"width":16,"height":22,"top":483,"right":618.15625,"bottom":505,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":479.54168701171875,"width":16,"height":24,"top":479.54168701171875,"right":618.15625,"bottom":503.54168701171875,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":479.54168701171875,"width":16,"height":24,"top":479.54168701171875,"right":618.15625,"bottom":503.54168701171875,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":483.54168701171875,"width":16,"height":16,"top":483.54168701171875,"right":618.15625,"bottom":499.54168701171875,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":516.3333740234375,"width":742,"height":26,"top":516.3333740234375,"right":1117.6666870117188,"bottom":542.3333740234375,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":517,"width":700.5208740234375,"height":22,"top":517,"right":1082.1875610351562,"bottom":539,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":517,"width":178.2916717529297,"height":22,"top":517,"right":559.9583587646484,"bottom":539,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":517,"width":178.2916717529297,"height":22,"top":517,"right":559.9583587646484,"bottom":539,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":517,"width":498.8645935058594,"height":22,"top":517,"right":1058.8229675292969,"bottom":539,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":517,"width":23.36458396911621,"height":22,"top":517,"right":1082.1875820159912,"bottom":539,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":517,"width":23.36458396911621,"height":22,"top":517,"right":1082.1875820159912,"bottom":539,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":517,"width":16,"height":22,"top":517,"right":1078.822998046875,"bottom":539,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":513.5416870117188,"width":16,"height":24,"top":513.5416870117188,"right":1078.822998046875,"bottom":537.5416870117188,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":513.5416870117188,"width":16,"height":24,"top":513.5416870117188,"right":1078.822998046875,"bottom":537.5416870117188,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":517.5416870117188,"width":16,"height":16,"top":517.5416870117188,"right":1078.822998046875,"bottom":533.5416870117188,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":550.3333740234375,"width":742,"height":50,"top":550.3333740234375,"right":1117.6666870117188,"bottom":600.3333740234375,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":551,"width":730.4479370117188,"height":46,"top":551,"right":1112.1146240234375,"bottom":597,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":551,"width":441.9583435058594,"height":22,"top":551,"right":823.6250305175781,"bottom":573,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":551,"width":441.9583435058594,"height":22,"top":551,"right":823.6250305175781,"bottom":573,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":551,"width":730.4479370117188,"height":46,"top":551,"right":1112.1146240234375,"bottom":597,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":575,"width":23.36458396911621,"height":22,"top":575,"right":840.156270980835,"bottom":597,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":575,"width":23.36458396911621,"height":22,"top":575,"right":840.156270980835,"bottom":597,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":575,"width":16,"height":22,"top":575,"right":836.7916870117188,"bottom":597,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":571.5416870117188,"width":16,"height":24,"top":571.5416870117188,"right":836.7916870117188,"bottom":595.5416870117188,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":571.5416870117188,"width":16,"height":24,"top":571.5416870117188,"right":836.7916870117188,"bottom":595.5416870117188,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":575.5416870117188,"width":16,"height":16,"top":575.5416870117188,"right":836.7916870117188,"bottom":591.5416870117188,"left":820.7916870117188},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-17.json b/demonstrations/ieckqwf/bboxes/bboxes-17.json new file mode 100644 index 0000000000000000000000000000000000000000..1d60f23b4bf53ae95b2d7d976fd94d2b12c9c694 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-17.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"5a04f383-796a-4127":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-220.6666717529297,"width":220,"height":2310.125,"top":-220.6666717529297,"right":220,"bottom":2089.4583282470703,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-220.6666717529297,"width":1043.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":220},"99a62f96-6364-402f":{"x":220,"y":-212.6666717529297,"width":1027.3333740234375,"height":2286.125,"top":-212.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-212.6666717529297,"width":1027.3333740234375,"height":2286.125,"top":-212.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"196f9843-9577-4c93":{"x":220,"y":-212.6666717529297,"width":1027.3333740234375,"height":2286.125,"top":-212.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-159.6666717529297,"width":1027.3333740234375,"height":2233.125,"top":-159.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2085.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1949.4583282470703,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2069.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1933.4583282470703,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2069.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1933.4583282470703,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2069.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1933.4583282470703,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2053.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1917.4583282470703,"left":349.66668701171875},"9c7be7cc-0dd0-4522":{"x":349.66668701171875,"y":-55.66666793823242,"width":768,"height":152,"top":-55.66666793823242,"right":1117.6666870117188,"bottom":96.33333206176758,"left":349.66668701171875},"fe7b0910-2cc5-4f44":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"370e6816-b4f3-441e":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"5fde6a21-a20f-4c16":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"a73f94e4-2be1-468e":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"a296e17a-3fbf-4fbe":{"x":349.66668701171875,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":535.6666870117188,"bottom":36.333333015441895,"left":349.66668701171875},"40223ff2-ec67-44bb":{"x":349.66668701171875,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":535.6666870117188,"bottom":36.333333015441895,"left":349.66668701171875},"45a2b5e0-6e0f-4609":{"x":349.66668701171875,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":535.6666870117188,"bottom":36.333333015441895,"left":349.66668701171875},"ec685cad-2276-4dfe":{"x":357.66668701171875,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":527.6666870117188,"bottom":32.333333015441895,"left":357.66668701171875},"b46f8877-710e-4581":{"x":357.66668701171875,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":527.6666870117188,"bottom":8.333333015441895,"left":357.66668701171875},"c3a6512d-dbb1-404e":{"x":357.66668701171875,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":527.6666870117188,"bottom":8.333333015441895,"left":357.66668701171875},"56bb96c0-9d6f-439e":{"x":357.66668701171875,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":527.6666870117188,"bottom":32.33333396911621,"left":357.66668701171875},"caac51c4-cf29-4be9":{"x":357.66668701171875,"y":12.333333969116211,"width":97.83333587646484,"height":16,"top":12.333333969116211,"right":455.5000228881836,"bottom":28.33333396911621,"left":357.66668701171875},"ed315a3b-3fbb-4535":{"x":357.66668701171875,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":373.66668701171875,"bottom":28.33333396911621,"left":357.66668701171875},"12a3f3bd-35fd-48e4":{"x":357.66668701171875,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":373.66668701171875,"bottom":28.33333396911621,"left":357.66668701171875},"ef7e2444-275e-41cb":{"x":357.66668701171875,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":373.66668701171875,"bottom":28.33333396911621,"left":357.66668701171875},"1a80d0e3-e2e4-4443":{"x":377.66668701171875,"y":12.333333969116211,"width":77.83333587646484,"height":16,"top":12.333333969116211,"right":455.5000228881836,"bottom":28.33333396911621,"left":377.66668701171875},"a48a9f2d-2e92-431a":{"x":459.5,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":463.40625,"bottom":32.33333396911621,"left":459.5},"127e909d-96b9-4103":{"x":467.40625,"y":12.333333969116211,"width":4.208333492279053,"height":16,"top":12.333333969116211,"right":471.61458349227905,"bottom":28.33333396911621,"left":467.40625},"fec27fa8-aef4-42a9":{"x":543.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":729.6666870117188,"bottom":36.333333015441895,"left":543.6666870117188},"a917b887-1bea-4203":{"x":543.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":729.6666870117188,"bottom":36.333333015441895,"left":543.6666870117188},"d62b89c4-22f1-4177":{"x":543.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":729.6666870117188,"bottom":36.333333015441895,"left":543.6666870117188},"9fdafbad-19d2-4ad2":{"x":551.6666870117188,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":721.6666870117188,"bottom":32.333333015441895,"left":551.6666870117188},"676aea97-b445-4e7e":{"x":551.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":721.6666870117188,"bottom":8.333333015441895,"left":551.6666870117188},"afb00160-bf5d-4cee":{"x":551.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":721.6666870117188,"bottom":8.333333015441895,"left":551.6666870117188},"0bda2a5c-95d2-426f":{"x":551.6666870117188,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":721.6666870117188,"bottom":32.33333396911621,"left":551.6666870117188},"fefe87b1-9278-4e85":{"x":551.6666870117188,"y":12.333333969116211,"width":121.27083587646484,"height":16,"top":12.333333969116211,"right":672.9375228881836,"bottom":28.33333396911621,"left":551.6666870117188},"2bca0f26-f911-4e14":{"x":551.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":567.6666870117188,"bottom":28.33333396911621,"left":551.6666870117188},"62996fea-cc04-4c37":{"x":551.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":567.6666870117188,"bottom":28.33333396911621,"left":551.6666870117188},"d0f59419-2518-4654":{"x":551.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":567.6666870117188,"bottom":28.33333396911621,"left":551.6666870117188},"5e70e550-40d9-4557":{"x":571.6666870117188,"y":12.333333969116211,"width":101.27083587646484,"height":16,"top":12.333333969116211,"right":672.9375228881836,"bottom":28.33333396911621,"left":571.6666870117188},"c6588d87-4279-4789":{"x":676.9375,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":680.84375,"bottom":32.33333396911621,"left":676.9375},"08f2aedb-ea0b-42ce":{"x":684.84375,"y":12.333333969116211,"width":6.927083492279053,"height":16,"top":12.333333969116211,"right":691.770833492279,"bottom":28.33333396911621,"left":684.84375},"781a4dea-b71f-4339":{"x":737.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":923.6666870117188,"bottom":36.333333015441895,"left":737.6666870117188},"9ab0924f-002a-4131":{"x":737.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":923.6666870117188,"bottom":36.333333015441895,"left":737.6666870117188},"41332a3e-8183-42b7":{"x":737.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":923.6666870117188,"bottom":36.333333015441895,"left":737.6666870117188},"fb5bd943-9d4b-498b":{"x":745.6666870117188,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":915.6666870117188,"bottom":32.333333015441895,"left":745.6666870117188},"91c48008-66f6-4822":{"x":745.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":915.6666870117188,"bottom":8.333333015441895,"left":745.6666870117188},"7fc3a830-7aea-4b6b":{"x":745.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":915.6666870117188,"bottom":8.333333015441895,"left":745.6666870117188},"c69d470c-b20e-43c0":{"x":745.6666870117188,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":915.6666870117188,"bottom":32.33333396911621,"left":745.6666870117188},"89a25add-4f94-4257":{"x":745.6666870117188,"y":12.333333969116211,"width":137.3125,"height":16,"top":12.333333969116211,"right":882.9791870117188,"bottom":28.33333396911621,"left":745.6666870117188},"95219df4-5558-4819":{"x":745.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":761.6666870117188,"bottom":28.33333396911621,"left":745.6666870117188},"5683a5bd-85e2-4b20":{"x":745.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":761.6666870117188,"bottom":28.33333396911621,"left":745.6666870117188},"4b8a4caa-fa92-4797":{"x":745.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":761.6666870117188,"bottom":28.33333396911621,"left":745.6666870117188},"2c56cac0-24b7-4552":{"x":765.6666870117188,"y":12.333333969116211,"width":117.3125,"height":16,"top":12.333333969116211,"right":882.9791870117188,"bottom":28.33333396911621,"left":765.6666870117188},"4ddbc830-f8c6-4938":{"x":886.9791870117188,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":890.8854370117188,"bottom":32.33333396911621,"left":886.9791870117188},"35380cbf-159b-4c1f":{"x":894.8854370117188,"y":12.333333969116211,"width":7.1354169845581055,"height":16,"top":12.333333969116211,"right":902.0208539962769,"bottom":28.33333396911621,"left":894.8854370117188},"3cf6dcc3-2dca-4390":{"x":931.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":36.333333015441895,"left":931.6666870117188},"bf09bc69-cf90-4c54":{"x":931.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":36.333333015441895,"left":931.6666870117188},"f7f10518-f6a2-40ab":{"x":931.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":36.333333015441895,"left":931.6666870117188},"773ad79f-ae38-49d6":{"x":939.6666870117188,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":1109.6666870117188,"bottom":32.333333015441895,"left":939.6666870117188},"c289791c-7f08-4dd6":{"x":939.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":1109.6666870117188,"bottom":8.333333015441895,"left":939.6666870117188},"44b18b34-feac-4e3a":{"x":939.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":1109.6666870117188,"bottom":8.333333015441895,"left":939.6666870117188},"846721d4-3cf2-428c":{"x":939.6666870117188,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":1109.6666870117188,"bottom":32.33333396911621,"left":939.6666870117188},"20a09b68-f784-477e":{"x":939.6666870117188,"y":12.333333969116211,"width":66.79167175292969,"height":16,"top":12.333333969116211,"right":1006.4583587646484,"bottom":28.33333396911621,"left":939.6666870117188},"43cca39e-0022-4fc0":{"x":939.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":955.6666870117188,"bottom":28.33333396911621,"left":939.6666870117188},"892f29c6-6401-4700":{"x":939.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":955.6666870117188,"bottom":28.33333396911621,"left":939.6666870117188},"1fef1718-b08f-4905":{"x":939.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":955.6666870117188,"bottom":28.33333396911621,"left":939.6666870117188},"9e4f1485-534c-4283":{"x":959.6666870117188,"y":12.333333969116211,"width":46.79166793823242,"height":16,"top":12.333333969116211,"right":1006.4583549499512,"bottom":28.33333396911621,"left":959.6666870117188},"b5b4164a-f4c1-45d4":{"x":1010.4583740234375,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":1014.3646240234375,"bottom":32.33333396911621,"left":1010.4583740234375},"5a6b1ec7-5ede-4c66":{"x":1018.3646240234375,"y":12.333333969116211,"width":7.770833492279053,"height":16,"top":12.333333969116211,"right":1026.1354575157166,"bottom":28.33333396911621,"left":1018.3646240234375},"5456479d-7e77-4ec9":{"x":349.66668701171875,"y":44.333335876464844,"width":186,"height":52,"top":44.333335876464844,"right":535.6666870117188,"bottom":96.33333587646484,"left":349.66668701171875},"039eefbc-512d-4f3b":{"x":349.66668701171875,"y":44.333335876464844,"width":186,"height":52,"top":44.333335876464844,"right":535.6666870117188,"bottom":96.33333587646484,"left":349.66668701171875},"64bd20ee-4420-43c3":{"x":349.66668701171875,"y":44.333335876464844,"width":186,"height":52,"top":44.333335876464844,"right":535.6666870117188,"bottom":96.33333587646484,"left":349.66668701171875},"1db606b7-036d-431d":{"x":357.66668701171875,"y":52.333335876464844,"width":170,"height":40,"top":52.333335876464844,"right":527.6666870117188,"bottom":92.33333587646484,"left":357.66668701171875},"30f04103-6371-48f2":{"x":357.66668701171875,"y":52.333335876464844,"width":170,"height":16,"top":52.333335876464844,"right":527.6666870117188,"bottom":68.33333587646484,"left":357.66668701171875},"bb8889c9-609c-456b":{"x":357.66668701171875,"y":52.333335876464844,"width":170,"height":16,"top":52.333335876464844,"right":527.6666870117188,"bottom":68.33333587646484,"left":357.66668701171875},"32542a4a-51b0-4ad2":{"x":357.66668701171875,"y":68.33333587646484,"width":170,"height":24,"top":68.33333587646484,"right":527.6666870117188,"bottom":92.33333587646484,"left":357.66668701171875},"af0080d4-ffa5-4cb9":{"x":357.66668701171875,"y":72.33333587646484,"width":105.0625,"height":16,"top":72.33333587646484,"right":462.72918701171875,"bottom":88.33333587646484,"left":357.66668701171875},"4181bffb-648b-4373":{"x":357.66668701171875,"y":72.33333587646484,"width":16,"height":16,"top":72.33333587646484,"right":373.66668701171875,"bottom":88.33333587646484,"left":357.66668701171875},"116e6b00-d660-4879":{"x":357.66668701171875,"y":72.33333587646484,"width":16,"height":16,"top":72.33333587646484,"right":373.66668701171875,"bottom":88.33333587646484,"left":357.66668701171875},"d454e062-474a-4f3d":{"x":357.66668701171875,"y":72.33333587646484,"width":16,"height":16,"top":72.33333587646484,"right":373.66668701171875,"bottom":88.33333587646484,"left":357.66668701171875},"208023bb-e533-4054":{"x":377.66668701171875,"y":72.33333587646484,"width":85.0625,"height":16,"top":72.33333587646484,"right":462.72918701171875,"bottom":88.33333587646484,"left":377.66668701171875},"5999ad85-9f25-4c7e":{"x":466.72918701171875,"y":68.33333587646484,"width":3.90625,"height":24,"top":68.33333587646484,"right":470.63543701171875,"bottom":92.33333587646484,"left":466.72918701171875},"d6d5cffd-7197-40c6":{"x":474.63543701171875,"y":72.33333587646484,"width":7.677083492279053,"height":16,"top":72.33333587646484,"right":482.3125205039978,"bottom":88.33333587646484,"left":474.63543701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":120.33333587646484,"width":768,"height":1595.125,"top":120.33333587646484,"right":1117.6666870117188,"bottom":1715.4583358764648,"left":349.66668701171875},"9b1f0199-999b-4b05":{"x":349.66668701171875,"y":120.33333587646484,"width":768,"height":32,"top":120.33333587646484,"right":1117.6666870117188,"bottom":152.33333587646484,"left":349.66668701171875},"4bac0e14-1da6-4aa6":{"x":349.66668701171875,"y":120.33333587646484,"width":768,"height":24,"top":120.33333587646484,"right":1117.6666870117188,"bottom":144.33333587646484,"left":349.66668701171875},"262690b6-c5ce-4cce":{"x":349.66668701171875,"y":120.33333587646484,"width":87.30208587646484,"height":24,"top":120.33333587646484,"right":436.9687728881836,"bottom":144.33333587646484,"left":349.66668701171875},"5d65b1cc-92a6-4e49":{"x":349.66668701171875,"y":120.33333587646484,"width":87.30208587646484,"height":24,"top":120.33333587646484,"right":436.9687728881836,"bottom":144.33333587646484,"left":349.66668701171875},"3d35c129-9293-4201":{"x":349.66668701171875,"y":120.33333587646484,"width":20,"height":24,"top":120.33333587646484,"right":369.66668701171875,"bottom":144.33333587646484,"left":349.66668701171875},"41d62912-c7c8-421a":{"x":349.66668701171875,"y":123.66667175292969,"width":20,"height":16,"top":123.66667175292969,"right":369.66668701171875,"bottom":139.6666717529297,"left":349.66668701171875},"d05a1854-6f39-424d":{"x":352.66668701171875,"y":124.66667175292969,"width":14,"height":14,"top":124.66667175292969,"right":366.66668701171875,"bottom":138.6666717529297,"left":352.66668701171875},"411509c0-5b02-4dd4":{"x":377.66668701171875,"y":120.33333587646484,"width":59.302085876464844,"height":24,"top":120.33333587646484,"right":436.9687728881836,"bottom":144.33333587646484,"left":377.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":152.33334350585938,"width":768,"height":1523.125,"top":152.33334350585938,"right":1117.6666870117188,"bottom":1675.4583435058594,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":152.33334350585938,"width":768,"height":1523.125,"top":152.33334350585938,"right":1117.6666870117188,"bottom":1675.4583435058594,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":152.33334350585938,"width":768,"height":1523.125,"top":152.33334350585938,"right":1117.6666870117188,"bottom":1675.4583435058594,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":153,"width":768,"height":634,"top":153,"right":1117.6666870117188,"bottom":787,"left":349.66668701171875},"60e543e9-3c49-4101":{"x":349.66668701171875,"y":153,"width":514.625,"height":22,"top":153,"right":864.2916870117188,"bottom":175,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":184.33334350585938,"width":768,"height":572,"top":184.33334350585938,"right":1117.6666870117188,"bottom":756.3333435058594,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":184.33334350585938,"width":742,"height":50,"top":184.33334350585938,"right":1117.6666870117188,"bottom":234.33334350585938,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":185,"width":708.4896240234375,"height":46,"top":185,"right":1090.1563110351562,"bottom":231,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":185,"width":283.57293701171875,"height":22,"top":185,"right":665.2396240234375,"bottom":207,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":185,"width":283.57293701171875,"height":22,"top":185,"right":665.2396240234375,"bottom":207,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":185,"width":708.4896240234375,"height":46,"top":185,"right":1090.1563110351562,"bottom":231,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":209,"width":23.36458396911621,"height":22,"top":209,"right":730.062520980835,"bottom":231,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":209,"width":23.36458396911621,"height":22,"top":209,"right":730.062520980835,"bottom":231,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":209,"width":16,"height":22,"top":209,"right":726.6979370117188,"bottom":231,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":205.5416717529297,"width":16,"height":24,"top":205.5416717529297,"right":726.6979370117188,"bottom":229.5416717529297,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":205.5416717529297,"width":16,"height":24,"top":205.5416717529297,"right":726.6979370117188,"bottom":229.5416717529297,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":209.5416717529297,"width":16,"height":16,"top":209.5416717529297,"right":726.6979370117188,"bottom":225.5416717529297,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":242.33334350585938,"width":742,"height":50,"top":242.33334350585938,"right":1117.6666870117188,"bottom":292.3333435058594,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":243,"width":728.6979370117188,"height":46,"top":243,"right":1110.3646240234375,"bottom":289,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":243,"width":289.28125,"height":22,"top":243,"right":670.9479370117188,"bottom":265,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":243,"width":289.28125,"height":22,"top":243,"right":670.9479370117188,"bottom":265,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":243,"width":728.6979370117188,"height":46,"top":243,"right":1110.3646240234375,"bottom":289,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":267,"width":23.36458396911621,"height":22,"top":267,"right":726.718770980835,"bottom":289,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":267,"width":23.36458396911621,"height":22,"top":267,"right":726.718770980835,"bottom":289,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":267,"width":16,"height":22,"top":267,"right":723.3541870117188,"bottom":289,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":263.54168701171875,"width":16,"height":24,"top":263.54168701171875,"right":723.3541870117188,"bottom":287.54168701171875,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":263.54168701171875,"width":16,"height":24,"top":263.54168701171875,"right":723.3541870117188,"bottom":287.54168701171875,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":267.54168701171875,"width":16,"height":16,"top":267.54168701171875,"right":723.3541870117188,"bottom":283.54168701171875,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":300.3333435058594,"width":742,"height":50,"top":300.3333435058594,"right":1117.6666870117188,"bottom":350.3333435058594,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":301,"width":659.8125,"height":46,"top":301,"right":1041.4791870117188,"bottom":347,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":301,"width":173.875,"height":22,"top":301,"right":555.5416870117188,"bottom":323,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":301,"width":173.875,"height":22,"top":301,"right":555.5416870117188,"bottom":323,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":301,"width":659.8125,"height":46,"top":301,"right":1041.4791870117188,"bottom":347,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":325,"width":23.36458396911621,"height":22,"top":325,"right":481.0520839691162,"bottom":347,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":325,"width":23.36458396911621,"height":22,"top":325,"right":481.0520839691162,"bottom":347,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":325,"width":16,"height":22,"top":325,"right":477.6875,"bottom":347,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":321.54168701171875,"width":16,"height":24,"top":321.54168701171875,"right":477.6875,"bottom":345.54168701171875,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":321.54168701171875,"width":16,"height":24,"top":321.54168701171875,"right":477.6875,"bottom":345.54168701171875,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":325.54168701171875,"width":16,"height":16,"top":325.54168701171875,"right":477.6875,"bottom":341.54168701171875,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":358.3333435058594,"width":742,"height":50,"top":358.3333435058594,"right":1117.6666870117188,"bottom":408.3333435058594,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":359,"width":659.625,"height":46,"top":359,"right":1041.2916870117188,"bottom":405,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":359,"width":193.30209350585938,"height":22,"top":359,"right":574.9687805175781,"bottom":381,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":359,"width":193.30209350585938,"height":22,"top":359,"right":574.9687805175781,"bottom":381,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":359,"width":659.625,"height":46,"top":359,"right":1041.2916870117188,"bottom":405,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":383,"width":23.36458396911621,"height":22,"top":383,"right":621.5208339691162,"bottom":405,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":383,"width":23.36458396911621,"height":22,"top":383,"right":621.5208339691162,"bottom":405,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":383,"width":16,"height":22,"top":383,"right":618.15625,"bottom":405,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":379.54168701171875,"width":16,"height":24,"top":379.54168701171875,"right":618.15625,"bottom":403.54168701171875,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":379.54168701171875,"width":16,"height":24,"top":379.54168701171875,"right":618.15625,"bottom":403.54168701171875,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":383.54168701171875,"width":16,"height":16,"top":383.54168701171875,"right":618.15625,"bottom":399.54168701171875,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":416.3333435058594,"width":742,"height":26,"top":416.3333435058594,"right":1117.6666870117188,"bottom":442.3333435058594,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":417,"width":700.5208740234375,"height":22,"top":417,"right":1082.1875610351562,"bottom":439,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":417,"width":178.2916717529297,"height":22,"top":417,"right":559.9583587646484,"bottom":439,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":417,"width":178.2916717529297,"height":22,"top":417,"right":559.9583587646484,"bottom":439,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":417,"width":498.8645935058594,"height":22,"top":417,"right":1058.8229675292969,"bottom":439,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":417,"width":23.36458396911621,"height":22,"top":417,"right":1082.1875820159912,"bottom":439,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":417,"width":23.36458396911621,"height":22,"top":417,"right":1082.1875820159912,"bottom":439,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":417,"width":16,"height":22,"top":417,"right":1078.822998046875,"bottom":439,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":413.54168701171875,"width":16,"height":24,"top":413.54168701171875,"right":1078.822998046875,"bottom":437.54168701171875,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":413.54168701171875,"width":16,"height":24,"top":413.54168701171875,"right":1078.822998046875,"bottom":437.54168701171875,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":417.54168701171875,"width":16,"height":16,"top":417.54168701171875,"right":1078.822998046875,"bottom":433.54168701171875,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":450.3333435058594,"width":742,"height":50,"top":450.3333435058594,"right":1117.6666870117188,"bottom":500.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":451,"width":730.4479370117188,"height":46,"top":451,"right":1112.1146240234375,"bottom":497,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":451,"width":441.9583435058594,"height":22,"top":451,"right":823.6250305175781,"bottom":473,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":451,"width":441.9583435058594,"height":22,"top":451,"right":823.6250305175781,"bottom":473,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":451,"width":730.4479370117188,"height":46,"top":451,"right":1112.1146240234375,"bottom":497,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":475,"width":23.36458396911621,"height":22,"top":475,"right":840.156270980835,"bottom":497,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":475,"width":23.36458396911621,"height":22,"top":475,"right":840.156270980835,"bottom":497,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":475,"width":16,"height":22,"top":475,"right":836.7916870117188,"bottom":497,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":471.54168701171875,"width":16,"height":24,"top":471.54168701171875,"right":836.7916870117188,"bottom":495.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":471.54168701171875,"width":16,"height":24,"top":471.54168701171875,"right":836.7916870117188,"bottom":495.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":475.54168701171875,"width":16,"height":16,"top":475.54168701171875,"right":836.7916870117188,"bottom":491.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":508.3333435058594,"width":742,"height":74,"top":508.3333435058594,"right":1117.6666870117188,"bottom":582.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":509,"width":735.3646240234375,"height":70,"top":509,"right":1117.0313110351562,"bottom":579,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":509,"width":257.3020935058594,"height":22,"top":509,"right":638.9687805175781,"bottom":531,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":509,"width":257.3020935058594,"height":22,"top":509,"right":638.9687805175781,"bottom":531,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":509,"width":735.3646240234375,"height":46,"top":509,"right":1117.0313110351562,"bottom":555,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":557,"width":23.36458396911621,"height":22,"top":557,"right":405.03127098083496,"bottom":579,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":557,"width":23.36458396911621,"height":22,"top":557,"right":405.03127098083496,"bottom":579,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":557,"width":16,"height":22,"top":557,"right":401.66668701171875,"bottom":579,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":553.5416870117188,"width":16,"height":24,"top":553.5416870117188,"right":401.66668701171875,"bottom":577.5416870117188,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":553.5416870117188,"width":16,"height":24,"top":553.5416870117188,"right":401.66668701171875,"bottom":577.5416870117188,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":557.5416870117188,"width":16,"height":16,"top":557.5416870117188,"right":401.66668701171875,"bottom":573.5416870117188,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":590.3333740234375,"width":742,"height":50,"top":590.3333740234375,"right":1117.6666870117188,"bottom":640.3333740234375,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":591,"width":688.1146240234375,"height":46,"top":591,"right":1069.7813110351562,"bottom":637,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":591,"width":172.7291717529297,"height":22,"top":591,"right":554.3958587646484,"bottom":613,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":591,"width":172.7291717529297,"height":22,"top":591,"right":554.3958587646484,"bottom":613,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":591,"width":688.1146240234375,"height":46,"top":591,"right":1069.7813110351562,"bottom":637,"left":381.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-2.json b/demonstrations/ieckqwf/bboxes/bboxes-2.json new file mode 100644 index 0000000000000000000000000000000000000000..e10bec9e8b02412272f4d791464aae5e4dc68876 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-2.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-206,"width":1263.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-206,"width":1263.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-206,"width":1263.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-206,"width":1263.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":0},"5a04f383-796a-4127":{"x":0,"y":-206,"width":1263.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-206,"width":1263.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-206,"width":220,"height":865,"top":-206,"right":220,"bottom":659,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-206,"width":1043.3333740234375,"height":865,"top":-206,"right":1263.3333740234375,"bottom":659,"left":220},"99a62f96-6364-402f":{"x":220,"y":-198,"width":1027.3333740234375,"height":841,"top":-198,"right":1247.3333740234375,"bottom":643,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-198,"width":1027.3333740234375,"height":841,"top":-198,"right":1247.3333740234375,"bottom":643,"left":220},"196f9843-9577-4c93":{"x":220,"y":-198,"width":1027.3333740234375,"height":841,"top":-198,"right":1247.3333740234375,"bottom":643,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":32,"top":8,"right":1231.3333740234375,"bottom":40,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":14,"width":194.55209350585938,"height":20,"top":14,"right":430.5520935058594,"bottom":34,"left":236},"179a06dd-504d-4b06":{"x":236,"y":14,"width":194.55209350585938,"height":20,"top":14,"right":430.5520935058594,"bottom":34,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":14,"width":194.55209350585938,"height":20,"top":14,"right":430.5520935058594,"bottom":34,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":14,"width":194.55209350585938,"height":20,"top":14,"right":430.5520935058594,"bottom":34,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":14,"width":20,"height":20,"top":14,"right":256,"bottom":34,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":14,"width":20,"height":20,"top":14,"right":256,"bottom":34,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":14,"width":20,"height":20,"top":14,"right":256,"bottom":34,"left":236},"165705fe-7dd8-419d":{"x":260,"y":14,"width":170.55209350585938,"height":20,"top":14,"right":430.5520935058594,"bottom":34,"left":260},"f2fdfe3b-4ebe-40da":{"x":547.6666870117188,"y":16,"width":448,"height":16,"top":16,"right":995.6666870117188,"bottom":32,"left":547.6666870117188},"a8bde6f0-c791-4ab9":{"x":547.6666870117188,"y":16,"width":448,"height":16,"top":16,"right":995.6666870117188,"bottom":32,"left":547.6666870117188},"0ef317a0-d30f-4c6d":{"x":547.6666870117188,"y":16,"width":448,"height":16,"top":16,"right":995.6666870117188,"bottom":32,"left":547.6666870117188},"8e9cc5d9-90c1-4be2":{"x":1112.78125,"y":8,"width":118.55208587646484,"height":32,"top":8,"right":1231.3333358764648,"bottom":40,"left":1112.78125},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":8,"width":118.55208587646484,"height":32,"top":8,"right":1231.3333358764648,"bottom":40,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":8,"width":118.55208587646484,"height":32,"top":8,"right":1231.3333358764648,"bottom":40,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":8,"width":32,"height":32,"top":8,"right":1144.78125,"bottom":40,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":42.395835876464844,"width":74.10417175292969,"height":24,"top":42.395835876464844,"right":1165.8334197998047,"bottom":66.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":42.395835876464844,"width":74.10417175292969,"height":24,"top":42.395835876464844,"right":1165.8334197998047,"bottom":66.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":46.395835876464844,"width":58.10416793823242,"height":16,"top":46.395835876464844,"right":1157.8334159851074,"bottom":62.395835876464844,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":45.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":45.72916793823242,"right":1157.8334159851074,"bottom":62.395835876464844,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":17,"width":17.5,"height":14,"top":17,"right":1137.53125,"bottom":31,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":17,"width":17.5,"height":14,"top":17,"right":1137.53125,"bottom":31,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":17.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":17.588232040405273,"right":1137.0487480163574,"bottom":30.410741806030273,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":8,"width":78.55208587646484,"height":32,"top":8,"right":1231.3333358764648,"bottom":40,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":8,"width":78.55208587646484,"height":32,"top":8,"right":1231.3333358764648,"bottom":40,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":17,"width":62.552085876464844,"height":14,"top":17,"right":1223.3333358764648,"bottom":31,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":17,"width":17.5,"height":14,"top":17,"right":1178.28125,"bottom":31,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":17.875,"width":14,"height":12.25,"top":17.875,"right":1176.53125,"bottom":30.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":17,"width":41.052085876464844,"height":14,"top":17,"right":1223.3333358764648,"bottom":31,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-145,"width":1027.3333740234375,"height":788,"top":-145,"right":1247.3333740234375,"bottom":643,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-121,"width":768,"height":640,"top":-121,"right":1117.6666870117188,"bottom":519,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-121,"width":768,"height":624,"top":-121,"right":1117.6666870117188,"bottom":503,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-121,"width":768,"height":624,"top":-121,"right":1117.6666870117188,"bottom":503,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-121,"width":768,"height":624,"top":-121,"right":1117.6666870117188,"bottom":503,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-121,"width":768,"height":608,"top":-121,"right":1117.6666870117188,"bottom":487,"left":349.66668701171875},"9c7be7cc-0dd0-4522":{"x":349.66668701171875,"y":-41,"width":768,"height":152,"top":-41,"right":1117.6666870117188,"bottom":111,"left":349.66668701171875},"fe7b0910-2cc5-4f44":{"x":349.66668701171875,"y":-1,"width":768,"height":112,"top":-1,"right":1117.6666870117188,"bottom":111,"left":349.66668701171875},"370e6816-b4f3-441e":{"x":349.66668701171875,"y":-1,"width":768,"height":112,"top":-1,"right":1117.6666870117188,"bottom":111,"left":349.66668701171875},"5fde6a21-a20f-4c16":{"x":349.66668701171875,"y":-1,"width":768,"height":112,"top":-1,"right":1117.6666870117188,"bottom":111,"left":349.66668701171875},"a73f94e4-2be1-468e":{"x":349.66668701171875,"y":-1,"width":768,"height":112,"top":-1,"right":1117.6666870117188,"bottom":111,"left":349.66668701171875},"a296e17a-3fbf-4fbe":{"x":349.66668701171875,"y":-1,"width":186,"height":52,"top":-1,"right":535.6666870117188,"bottom":51,"left":349.66668701171875},"40223ff2-ec67-44bb":{"x":349.66668701171875,"y":-1,"width":186,"height":52,"top":-1,"right":535.6666870117188,"bottom":51,"left":349.66668701171875},"45a2b5e0-6e0f-4609":{"x":349.66668701171875,"y":-1,"width":186,"height":52,"top":-1,"right":535.6666870117188,"bottom":51,"left":349.66668701171875},"ec685cad-2276-4dfe":{"x":357.66668701171875,"y":7,"width":170,"height":40,"top":7,"right":527.6666870117188,"bottom":47,"left":357.66668701171875},"b46f8877-710e-4581":{"x":357.66668701171875,"y":7,"width":170,"height":16,"top":7,"right":527.6666870117188,"bottom":23,"left":357.66668701171875},"c3a6512d-dbb1-404e":{"x":357.66668701171875,"y":7,"width":170,"height":16,"top":7,"right":527.6666870117188,"bottom":23,"left":357.66668701171875},"56bb96c0-9d6f-439e":{"x":357.66668701171875,"y":23,"width":170,"height":24,"top":23,"right":527.6666870117188,"bottom":47,"left":357.66668701171875},"caac51c4-cf29-4be9":{"x":357.66668701171875,"y":27,"width":97.83333587646484,"height":16,"top":27,"right":455.5000228881836,"bottom":43,"left":357.66668701171875},"ed315a3b-3fbb-4535":{"x":357.66668701171875,"y":27,"width":16,"height":16,"top":27,"right":373.66668701171875,"bottom":43,"left":357.66668701171875},"12a3f3bd-35fd-48e4":{"x":357.66668701171875,"y":27,"width":16,"height":16,"top":27,"right":373.66668701171875,"bottom":43,"left":357.66668701171875},"ef7e2444-275e-41cb":{"x":357.66668701171875,"y":27,"width":16,"height":16,"top":27,"right":373.66668701171875,"bottom":43,"left":357.66668701171875},"1a80d0e3-e2e4-4443":{"x":377.66668701171875,"y":27,"width":77.83333587646484,"height":16,"top":27,"right":455.5000228881836,"bottom":43,"left":377.66668701171875},"a48a9f2d-2e92-431a":{"x":459.5,"y":23,"width":3.90625,"height":24,"top":23,"right":463.40625,"bottom":47,"left":459.5},"127e909d-96b9-4103":{"x":467.40625,"y":27,"width":4.208333492279053,"height":16,"top":27,"right":471.61458349227905,"bottom":43,"left":467.40625},"fec27fa8-aef4-42a9":{"x":543.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":729.6666870117188,"bottom":51,"left":543.6666870117188},"a917b887-1bea-4203":{"x":543.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":729.6666870117188,"bottom":51,"left":543.6666870117188},"d62b89c4-22f1-4177":{"x":543.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":729.6666870117188,"bottom":51,"left":543.6666870117188},"9fdafbad-19d2-4ad2":{"x":551.6666870117188,"y":7,"width":170,"height":40,"top":7,"right":721.6666870117188,"bottom":47,"left":551.6666870117188},"676aea97-b445-4e7e":{"x":551.6666870117188,"y":7,"width":170,"height":16,"top":7,"right":721.6666870117188,"bottom":23,"left":551.6666870117188},"afb00160-bf5d-4cee":{"x":551.6666870117188,"y":7,"width":170,"height":16,"top":7,"right":721.6666870117188,"bottom":23,"left":551.6666870117188},"0bda2a5c-95d2-426f":{"x":551.6666870117188,"y":23,"width":170,"height":24,"top":23,"right":721.6666870117188,"bottom":47,"left":551.6666870117188},"fefe87b1-9278-4e85":{"x":551.6666870117188,"y":27,"width":121.27083587646484,"height":16,"top":27,"right":672.9375228881836,"bottom":43,"left":551.6666870117188},"2bca0f26-f911-4e14":{"x":551.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":567.6666870117188,"bottom":43,"left":551.6666870117188},"62996fea-cc04-4c37":{"x":551.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":567.6666870117188,"bottom":43,"left":551.6666870117188},"d0f59419-2518-4654":{"x":551.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":567.6666870117188,"bottom":43,"left":551.6666870117188},"5e70e550-40d9-4557":{"x":571.6666870117188,"y":27,"width":101.27083587646484,"height":16,"top":27,"right":672.9375228881836,"bottom":43,"left":571.6666870117188},"c6588d87-4279-4789":{"x":676.9375,"y":23,"width":3.90625,"height":24,"top":23,"right":680.84375,"bottom":47,"left":676.9375},"08f2aedb-ea0b-42ce":{"x":684.84375,"y":27,"width":6.927083492279053,"height":16,"top":27,"right":691.770833492279,"bottom":43,"left":684.84375},"781a4dea-b71f-4339":{"x":737.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":923.6666870117188,"bottom":51,"left":737.6666870117188},"9ab0924f-002a-4131":{"x":737.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":923.6666870117188,"bottom":51,"left":737.6666870117188},"41332a3e-8183-42b7":{"x":737.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":923.6666870117188,"bottom":51,"left":737.6666870117188},"fb5bd943-9d4b-498b":{"x":745.6666870117188,"y":7,"width":170,"height":40,"top":7,"right":915.6666870117188,"bottom":47,"left":745.6666870117188},"91c48008-66f6-4822":{"x":745.6666870117188,"y":7,"width":170,"height":16,"top":7,"right":915.6666870117188,"bottom":23,"left":745.6666870117188},"7fc3a830-7aea-4b6b":{"x":745.6666870117188,"y":7,"width":170,"height":16,"top":7,"right":915.6666870117188,"bottom":23,"left":745.6666870117188},"c69d470c-b20e-43c0":{"x":745.6666870117188,"y":23,"width":170,"height":24,"top":23,"right":915.6666870117188,"bottom":47,"left":745.6666870117188},"89a25add-4f94-4257":{"x":745.6666870117188,"y":27,"width":137.3125,"height":16,"top":27,"right":882.9791870117188,"bottom":43,"left":745.6666870117188},"95219df4-5558-4819":{"x":745.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":761.6666870117188,"bottom":43,"left":745.6666870117188},"5683a5bd-85e2-4b20":{"x":745.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":761.6666870117188,"bottom":43,"left":745.6666870117188},"4b8a4caa-fa92-4797":{"x":745.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":761.6666870117188,"bottom":43,"left":745.6666870117188},"2c56cac0-24b7-4552":{"x":765.6666870117188,"y":27,"width":117.3125,"height":16,"top":27,"right":882.9791870117188,"bottom":43,"left":765.6666870117188},"4ddbc830-f8c6-4938":{"x":886.9791870117188,"y":23,"width":3.90625,"height":24,"top":23,"right":890.8854370117188,"bottom":47,"left":886.9791870117188},"35380cbf-159b-4c1f":{"x":894.8854370117188,"y":27,"width":7.1354169845581055,"height":16,"top":27,"right":902.0208539962769,"bottom":43,"left":894.8854370117188},"3cf6dcc3-2dca-4390":{"x":931.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":1117.6666870117188,"bottom":51,"left":931.6666870117188},"bf09bc69-cf90-4c54":{"x":931.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":1117.6666870117188,"bottom":51,"left":931.6666870117188},"f7f10518-f6a2-40ab":{"x":931.6666870117188,"y":-1,"width":186,"height":52,"top":-1,"right":1117.6666870117188,"bottom":51,"left":931.6666870117188},"773ad79f-ae38-49d6":{"x":939.6666870117188,"y":7,"width":170,"height":40,"top":7,"right":1109.6666870117188,"bottom":47,"left":939.6666870117188},"c289791c-7f08-4dd6":{"x":939.6666870117188,"y":7,"width":170,"height":16,"top":7,"right":1109.6666870117188,"bottom":23,"left":939.6666870117188},"44b18b34-feac-4e3a":{"x":939.6666870117188,"y":7,"width":170,"height":16,"top":7,"right":1109.6666870117188,"bottom":23,"left":939.6666870117188},"846721d4-3cf2-428c":{"x":939.6666870117188,"y":23,"width":170,"height":24,"top":23,"right":1109.6666870117188,"bottom":47,"left":939.6666870117188},"20a09b68-f784-477e":{"x":939.6666870117188,"y":27,"width":66.79167175292969,"height":16,"top":27,"right":1006.4583587646484,"bottom":43,"left":939.6666870117188},"43cca39e-0022-4fc0":{"x":939.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":955.6666870117188,"bottom":43,"left":939.6666870117188},"892f29c6-6401-4700":{"x":939.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":955.6666870117188,"bottom":43,"left":939.6666870117188},"1fef1718-b08f-4905":{"x":939.6666870117188,"y":27,"width":16,"height":16,"top":27,"right":955.6666870117188,"bottom":43,"left":939.6666870117188},"9e4f1485-534c-4283":{"x":959.6666870117188,"y":27,"width":46.79166793823242,"height":16,"top":27,"right":1006.4583549499512,"bottom":43,"left":959.6666870117188},"b5b4164a-f4c1-45d4":{"x":1010.4583740234375,"y":23,"width":3.90625,"height":24,"top":23,"right":1014.3646240234375,"bottom":47,"left":1010.4583740234375},"5a6b1ec7-5ede-4c66":{"x":1018.3646240234375,"y":27,"width":7.770833492279053,"height":16,"top":27,"right":1026.1354575157166,"bottom":43,"left":1018.3646240234375},"5456479d-7e77-4ec9":{"x":349.66668701171875,"y":59,"width":186,"height":52,"top":59,"right":535.6666870117188,"bottom":111,"left":349.66668701171875},"039eefbc-512d-4f3b":{"x":349.66668701171875,"y":59,"width":186,"height":52,"top":59,"right":535.6666870117188,"bottom":111,"left":349.66668701171875},"64bd20ee-4420-43c3":{"x":349.66668701171875,"y":59,"width":186,"height":52,"top":59,"right":535.6666870117188,"bottom":111,"left":349.66668701171875},"1db606b7-036d-431d":{"x":357.66668701171875,"y":67,"width":170,"height":40,"top":67,"right":527.6666870117188,"bottom":107,"left":357.66668701171875},"30f04103-6371-48f2":{"x":357.66668701171875,"y":67,"width":170,"height":16,"top":67,"right":527.6666870117188,"bottom":83,"left":357.66668701171875},"bb8889c9-609c-456b":{"x":357.66668701171875,"y":67,"width":170,"height":16,"top":67,"right":527.6666870117188,"bottom":83,"left":357.66668701171875},"32542a4a-51b0-4ad2":{"x":357.66668701171875,"y":83,"width":170,"height":24,"top":83,"right":527.6666870117188,"bottom":107,"left":357.66668701171875},"af0080d4-ffa5-4cb9":{"x":357.66668701171875,"y":87,"width":105.0625,"height":16,"top":87,"right":462.72918701171875,"bottom":103,"left":357.66668701171875},"4181bffb-648b-4373":{"x":357.66668701171875,"y":87,"width":16,"height":16,"top":87,"right":373.66668701171875,"bottom":103,"left":357.66668701171875},"116e6b00-d660-4879":{"x":357.66668701171875,"y":87,"width":16,"height":16,"top":87,"right":373.66668701171875,"bottom":103,"left":357.66668701171875},"d454e062-474a-4f3d":{"x":357.66668701171875,"y":87,"width":16,"height":16,"top":87,"right":373.66668701171875,"bottom":103,"left":357.66668701171875},"208023bb-e533-4054":{"x":377.66668701171875,"y":87,"width":85.0625,"height":16,"top":87,"right":462.72918701171875,"bottom":103,"left":377.66668701171875},"5999ad85-9f25-4c7e":{"x":466.72918701171875,"y":83,"width":3.90625,"height":24,"top":83,"right":470.63543701171875,"bottom":107,"left":466.72918701171875},"d6d5cffd-7197-40c6":{"x":474.63543701171875,"y":87,"width":7.677083492279053,"height":16,"top":87,"right":482.3125205039978,"bottom":103,"left":474.63543701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":135,"width":768,"height":320,"top":135,"right":1117.6666870117188,"bottom":455,"left":349.66668701171875},"9b1f0199-999b-4b05":{"x":349.66668701171875,"y":135,"width":768,"height":32,"top":135,"right":1117.6666870117188,"bottom":167,"left":349.66668701171875},"4bac0e14-1da6-4aa6":{"x":349.66668701171875,"y":135,"width":768,"height":24,"top":135,"right":1117.6666870117188,"bottom":159,"left":349.66668701171875},"262690b6-c5ce-4cce":{"x":349.66668701171875,"y":135,"width":87.30208587646484,"height":24,"top":135,"right":436.9687728881836,"bottom":159,"left":349.66668701171875},"5d65b1cc-92a6-4e49":{"x":349.66668701171875,"y":135,"width":87.30208587646484,"height":24,"top":135,"right":436.9687728881836,"bottom":159,"left":349.66668701171875},"3d35c129-9293-4201":{"x":349.66668701171875,"y":135,"width":20,"height":24,"top":135,"right":369.66668701171875,"bottom":159,"left":349.66668701171875},"41d62912-c7c8-421a":{"x":347.3178405761719,"y":133.5410919189453,"width":24.6976318359375,"height":25.58449363708496,"top":133.5410919189453,"right":372.0154724121094,"bottom":159.12558555603027,"left":347.3178405761719},"d05a1854-6f39-424d":{"x":348.4928894042969,"y":135.15953063964844,"width":22.347576141357422,"height":22.34761619567871,"top":135.15953063964844,"right":370.8404655456543,"bottom":157.50714683532715,"left":348.4928894042969},"411509c0-5b02-4dd4":{"x":377.66668701171875,"y":135,"width":59.302085876464844,"height":24,"top":135,"right":436.9687728881836,"bottom":159,"left":377.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":167,"width":768,"height":288,"top":167,"right":1117.6666870117188,"bottom":455,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":167,"width":768,"height":288,"top":167,"right":1117.6666870117188,"bottom":455,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":167,"width":768,"height":288,"top":167,"right":1117.6666870117188,"bottom":455,"left":349.66668701171875},"0f42964f-e0f9-4fcb":{"x":349.66668701171875,"y":167.6666717529297,"width":768,"height":287.3333435058594,"top":167.6666717529297,"right":1117.6666870117188,"bottom":455.00001525878906,"left":349.66668701171875},"5179c955-09ae-4b67":{"x":349.66668701171875,"y":167.6666717529297,"width":117.125,"height":22,"top":167.6666717529297,"right":466.79168701171875,"bottom":189.6666717529297,"left":349.66668701171875},"eb5109d8-22e1-4152":{"x":466.79168701171875,"y":167.6666717529297,"width":122.65625,"height":22,"top":167.6666717529297,"right":589.4479370117188,"bottom":189.6666717529297,"left":466.79168701171875},"4f54728f-8a12-4bb8":{"x":589.4479370117188,"y":167.6666717529297,"width":99.875,"height":22,"top":167.6666717529297,"right":689.3229370117188,"bottom":189.6666717529297,"left":589.4479370117188},"cfff987f-ebb8-41fe":{"x":689.3229370117188,"y":167.6666717529297,"width":131.14584350585938,"height":22,"top":167.6666717529297,"right":820.4687805175781,"bottom":189.6666717529297,"left":689.3229370117188},"018db1e5-ff31-4691":{"x":820.46875,"y":167.6666717529297,"width":43.84375,"height":22,"top":167.6666717529297,"right":864.3125,"bottom":189.6666717529297,"left":820.46875},"7521d548-3960-4933":{"x":349.66668701171875,"y":199,"width":768,"height":256,"top":199,"right":1117.6666870117188,"bottom":455,"left":349.66668701171875},"05bfc169-c4d9-42ff":{"x":375.66668701171875,"y":199,"width":742,"height":50,"top":199,"right":1117.6666870117188,"bottom":249,"left":375.66668701171875},"3bb760c7-f2d1-4ae4":{"x":381.66668701171875,"y":199.6666717529297,"width":708.5,"height":46,"top":199.6666717529297,"right":1090.1666870117188,"bottom":245.6666717529297,"left":381.66668701171875},"75677ab0-4a6a-4823":{"x":381.66668701171875,"y":199.6666717529297,"width":283.57293701171875,"height":22,"top":199.6666717529297,"right":665.2396240234375,"bottom":221.6666717529297,"left":381.66668701171875},"977e92ac-6111-4ede":{"x":381.66668701171875,"y":199.6666717529297,"width":283.57293701171875,"height":22,"top":199.6666717529297,"right":665.2396240234375,"bottom":221.6666717529297,"left":381.66668701171875},"a15189cd-ec7d-437c":{"x":665.2396240234375,"y":199.6666717529297,"width":38.864585876464844,"height":22,"top":199.6666717529297,"right":704.1042098999023,"bottom":221.6666717529297,"left":665.2396240234375},"88e61b45-f187-4d23":{"x":704.1041870117188,"y":199.6666717529297,"width":124.38542175292969,"height":22,"top":199.6666717529297,"right":828.4896087646484,"bottom":221.6666717529297,"left":704.1041870117188},"1478b0c0-c044-4ef7":{"x":828.4896240234375,"y":199.6666717529297,"width":98.05208587646484,"height":22,"top":199.6666717529297,"right":926.5417098999023,"bottom":221.6666717529297,"left":828.4896240234375},"9a1cadf4-031e-40d1":{"x":926.5416870117188,"y":199.6666717529297,"width":127.92708587646484,"height":22,"top":199.6666717529297,"right":1054.4687728881836,"bottom":221.6666717529297,"left":926.5416870117188},"76394606-ac62-48dc":{"x":381.66668701171875,"y":199.6666717529297,"width":708.5,"height":46,"top":199.6666717529297,"right":1090.1666870117188,"bottom":245.6666717529297,"left":381.66668701171875},"9dacd335-fd49-4466":{"x":450.25,"y":223.6666717529297,"width":139.36459350585938,"height":22,"top":223.6666717529297,"right":589.6145935058594,"bottom":245.6666717529297,"left":450.25},"0365b3c7-c0f0-4a74":{"x":589.6146240234375,"y":223.6666717529297,"width":117.09375,"height":22,"top":223.6666717529297,"right":706.7083740234375,"bottom":245.6666717529297,"left":589.6146240234375},"de22f270-947f-4abe":{"x":706.7083740234375,"y":223.6666717529297,"width":23.36458396911621,"height":22,"top":223.6666717529297,"right":730.0729579925537,"bottom":245.6666717529297,"left":706.7083740234375},"92f8a889-4c46-46aa":{"x":706.7083740234375,"y":223.6666717529297,"width":23.36458396911621,"height":22,"top":223.6666717529297,"right":730.0729579925537,"bottom":245.6666717529297,"left":706.7083740234375},"9f1af41e-bf1f-4512":{"x":710.7083740234375,"y":223.6666717529297,"width":16,"height":22,"top":223.6666717529297,"right":726.7083740234375,"bottom":245.6666717529297,"left":710.7083740234375},"963e53ed-aa6b-459d":{"x":710.7083740234375,"y":220.20834350585938,"width":16,"height":24,"top":220.20834350585938,"right":726.7083740234375,"bottom":244.20834350585938,"left":710.7083740234375},"2da264f7-2d71-44fb":{"x":710.7083740234375,"y":220.20834350585938,"width":16,"height":24,"top":220.20834350585938,"right":726.7083740234375,"bottom":244.20834350585938,"left":710.7083740234375},"60e8eee4-eaf8-455b":{"x":710.7083740234375,"y":224.20834350585938,"width":16,"height":16,"top":224.20834350585938,"right":726.7083740234375,"bottom":240.20834350585938,"left":710.7083740234375},"6659bfc7-e02a-4627":{"x":375.66668701171875,"y":257,"width":742,"height":50,"top":257,"right":1117.6666870117188,"bottom":307,"left":375.66668701171875},"56da8963-bce5-4833":{"x":381.66668701171875,"y":257.66668701171875,"width":728.71875,"height":46,"top":257.66668701171875,"right":1110.3854370117188,"bottom":303.66668701171875,"left":381.66668701171875},"876c0aec-aeff-4149":{"x":381.66668701171875,"y":257.66668701171875,"width":289.29168701171875,"height":22,"top":257.66668701171875,"right":670.9583740234375,"bottom":279.66668701171875,"left":381.66668701171875},"19d9b8fd-6a66-429a":{"x":381.66668701171875,"y":257.66668701171875,"width":289.29168701171875,"height":22,"top":257.66668701171875,"right":670.9583740234375,"bottom":279.66668701171875,"left":381.66668701171875},"78bb3db0-f4aa-4a5b":{"x":670.9583740234375,"y":257.66668701171875,"width":51.333335876464844,"height":22,"top":257.66668701171875,"right":722.2917098999023,"bottom":279.66668701171875,"left":670.9583740234375},"959a5cff-c570-4c85":{"x":722.2916870117188,"y":257.66668701171875,"width":124.5,"height":22,"top":257.66668701171875,"right":846.7916870117188,"bottom":279.66668701171875,"left":722.2916870117188},"bd418c66-ad76-4cc2":{"x":846.7916870117188,"y":257.66668701171875,"width":132.05209350585938,"height":22,"top":257.66668701171875,"right":978.8437805175781,"bottom":279.66668701171875,"left":846.7916870117188},"40c48014-932f-4efa":{"x":978.84375,"y":257.66668701171875,"width":131.5416717529297,"height":22,"top":257.66668701171875,"right":1110.3854217529297,"bottom":279.66668701171875,"left":978.84375},"c6a81f17-2014-404b":{"x":381.66668701171875,"y":281.66668701171875,"width":102.85417175292969,"height":22,"top":281.66668701171875,"right":484.52085876464844,"bottom":303.66668701171875,"left":381.66668701171875},"9438724e-f1b1-4c52":{"x":484.5208435058594,"y":281.66668701171875,"width":181.21875,"height":22,"top":281.66668701171875,"right":665.7395935058594,"bottom":303.66668701171875,"left":484.5208435058594},"8f7ceaa6-b5ea-41f8":{"x":665.7396240234375,"y":281.66668701171875,"width":37.625,"height":22,"top":281.66668701171875,"right":703.3646240234375,"bottom":303.66668701171875,"left":665.7396240234375},"274bddde-692b-460c":{"x":703.3646240234375,"y":281.66668701171875,"width":23.36458396911621,"height":22,"top":281.66668701171875,"right":726.7292079925537,"bottom":303.66668701171875,"left":703.3646240234375},"287738ba-dd11-4892":{"x":703.3646240234375,"y":281.66668701171875,"width":23.36458396911621,"height":22,"top":281.66668701171875,"right":726.7292079925537,"bottom":303.66668701171875,"left":703.3646240234375},"461c14bb-9e54-45f9":{"x":707.3646240234375,"y":281.66668701171875,"width":16,"height":22,"top":281.66668701171875,"right":723.3646240234375,"bottom":303.66668701171875,"left":707.3646240234375},"f3cccfb7-6a98-4da5":{"x":707.3646240234375,"y":278.2083435058594,"width":16,"height":24,"top":278.2083435058594,"right":723.3646240234375,"bottom":302.2083435058594,"left":707.3646240234375},"de79df75-719a-4c6d":{"x":707.3646240234375,"y":278.2083435058594,"width":16,"height":24,"top":278.2083435058594,"right":723.3646240234375,"bottom":302.2083435058594,"left":707.3646240234375},"22e0fde9-e9f8-4f86":{"x":707.3646240234375,"y":282.2083435058594,"width":16,"height":16,"top":282.2083435058594,"right":723.3646240234375,"bottom":298.2083435058594,"left":707.3646240234375},"f0647b08-60f5-45ec":{"x":375.66668701171875,"y":315,"width":742,"height":50,"top":315,"right":1117.6666870117188,"bottom":365,"left":375.66668701171875},"4ac50467-4777-4d33":{"x":381.66668701171875,"y":315.66668701171875,"width":659.8541870117188,"height":46,"top":315.66668701171875,"right":1041.5208740234375,"bottom":361.66668701171875,"left":381.66668701171875},"e65e2d00-a235-40b5":{"x":381.66668701171875,"y":315.66668701171875,"width":173.8854217529297,"height":22,"top":315.66668701171875,"right":555.5521087646484,"bottom":337.66668701171875,"left":381.66668701171875},"f095f932-b0da-46eb":{"x":381.66668701171875,"y":315.66668701171875,"width":173.8854217529297,"height":22,"top":315.66668701171875,"right":555.5521087646484,"bottom":337.66668701171875,"left":381.66668701171875},"e9ffcaa8-2e66-4b6c":{"x":555.5521240234375,"y":315.66668701171875,"width":41.54166793823242,"height":22,"top":315.66668701171875,"right":597.0937919616699,"bottom":337.66668701171875,"left":555.5521240234375},"991deeed-e85e-4483":{"x":597.09375,"y":315.66668701171875,"width":102.83333587646484,"height":22,"top":315.66668701171875,"right":699.9270858764648,"bottom":337.66668701171875,"left":597.09375},"7fe6b6e7-895c-4e5c":{"x":699.9271240234375,"y":315.66668701171875,"width":131.14584350585938,"height":22,"top":315.66668701171875,"right":831.0729675292969,"bottom":337.66668701171875,"left":699.9271240234375},"b97acb21-435d-449c":{"x":831.0729370117188,"y":315.66668701171875,"width":119.98958587646484,"height":22,"top":315.66668701171875,"right":951.0625228881836,"bottom":337.66668701171875,"left":831.0729370117188},"29596457-4a29-4acc":{"x":381.66668701171875,"y":315.66668701171875,"width":659.8541870117188,"height":46,"top":315.66668701171875,"right":1041.5208740234375,"bottom":361.66668701171875,"left":381.66668701171875},"f3c7fe31-45ca-4dfc":{"x":457.6875,"y":339.66668701171875,"width":23.36458396911621,"height":22,"top":339.66668701171875,"right":481.0520839691162,"bottom":361.66668701171875,"left":457.6875},"9c925b37-8e40-4057":{"x":457.6875,"y":339.66668701171875,"width":23.36458396911621,"height":22,"top":339.66668701171875,"right":481.0520839691162,"bottom":361.66668701171875,"left":457.6875},"0afda04f-b479-4f02":{"x":461.6875,"y":339.66668701171875,"width":16,"height":22,"top":339.66668701171875,"right":477.6875,"bottom":361.66668701171875,"left":461.6875},"26aa487b-47c1-4ed7":{"x":461.6875,"y":336.2083435058594,"width":16,"height":24,"top":336.2083435058594,"right":477.6875,"bottom":360.2083435058594,"left":461.6875},"eb73973f-b08d-401f":{"x":461.6875,"y":336.2083435058594,"width":16,"height":24,"top":336.2083435058594,"right":477.6875,"bottom":360.2083435058594,"left":461.6875},"1a38b8c9-f54e-46fe":{"x":461.6875,"y":340.2083435058594,"width":16,"height":16,"top":340.2083435058594,"right":477.6875,"bottom":356.2083435058594,"left":461.6875},"1a47d74e-5c22-4982":{"x":375.66668701171875,"y":373,"width":742,"height":50,"top":373,"right":1117.6666870117188,"bottom":423,"left":375.66668701171875},"71191ee7-7a51-42ac":{"x":381.66668701171875,"y":373.66668701171875,"width":659.6666870117188,"height":46,"top":373.66668701171875,"right":1041.3333740234375,"bottom":419.66668701171875,"left":381.66668701171875},"678fc46f-2e6f-4c88":{"x":381.66668701171875,"y":373.66668701171875,"width":193.3125,"height":22,"top":373.66668701171875,"right":574.9791870117188,"bottom":395.66668701171875,"left":381.66668701171875},"53137e8a-72df-4701":{"x":381.66668701171875,"y":373.66668701171875,"width":193.3125,"height":22,"top":373.66668701171875,"right":574.9791870117188,"bottom":395.66668701171875,"left":381.66668701171875},"acb52a33-edad-4eff":{"x":574.9791870117188,"y":373.66668701171875,"width":138.0416717529297,"height":22,"top":373.66668701171875,"right":713.0208587646484,"bottom":395.66668701171875,"left":574.9791870117188},"d6a36752-6eb1-4b41":{"x":713.0208740234375,"y":373.66668701171875,"width":118.16667175292969,"height":22,"top":373.66668701171875,"right":831.1875457763672,"bottom":395.66668701171875,"left":713.0208740234375},"8d52d023-fea3-47a1":{"x":831.1875,"y":373.66668701171875,"width":133.80209350585938,"height":22,"top":373.66668701171875,"right":964.9895935058594,"bottom":395.66668701171875,"left":831.1875},"57f65c9d-cb11-458d":{"x":381.66668701171875,"y":373.66668701171875,"width":659.6666870117188,"height":46,"top":373.66668701171875,"right":1041.3333740234375,"bottom":419.66668701171875,"left":381.66668701171875},"bf072cc2-83f2-4540":{"x":462.29168701171875,"y":397.66668701171875,"width":135.86459350585938,"height":22,"top":397.66668701171875,"right":598.1562805175781,"bottom":419.66668701171875,"left":462.29168701171875},"5487739d-c990-4ff6":{"x":598.15625,"y":397.66668701171875,"width":23.36458396911621,"height":22,"top":397.66668701171875,"right":621.5208339691162,"bottom":419.66668701171875,"left":598.15625},"23fbddc4-e2ea-496d":{"x":598.15625,"y":397.66668701171875,"width":23.36458396911621,"height":22,"top":397.66668701171875,"right":621.5208339691162,"bottom":419.66668701171875,"left":598.15625},"d069ed66-e6c4-4841":{"x":602.15625,"y":397.66668701171875,"width":16,"height":22,"top":397.66668701171875,"right":618.15625,"bottom":419.66668701171875,"left":602.15625},"acc3a565-cb7e-448b":{"x":602.15625,"y":394.2083435058594,"width":16,"height":24,"top":394.2083435058594,"right":618.15625,"bottom":418.2083435058594,"left":602.15625},"ca98ceb4-89cb-46a6":{"x":602.15625,"y":394.2083435058594,"width":16,"height":24,"top":394.2083435058594,"right":618.15625,"bottom":418.2083435058594,"left":602.15625},"9457c6b4-eebd-43d3":{"x":602.15625,"y":398.2083435058594,"width":16,"height":16,"top":398.2083435058594,"right":618.15625,"bottom":414.2083435058594,"left":602.15625},"037d4405-8d59-41b9":{"x":375.66668701171875,"y":431,"width":742,"height":24,"top":431,"right":1117.6666870117188,"bottom":455,"left":375.66668701171875},"86b92af2-d242-4ec2":{"x":381.66668701171875,"y":431.66668701171875,"width":677.1875,"height":22,"top":431.66668701171875,"right":1058.8541870117188,"bottom":453.66668701171875,"left":381.66668701171875},"3f330f02-20ac-4145":{"x":381.66668701171875,"y":431.66668701171875,"width":178.30209350585938,"height":22,"top":431.66668701171875,"right":559.9687805175781,"bottom":453.66668701171875,"left":381.66668701171875},"dc456973-5687-427b":{"x":381.66668701171875,"y":431.66668701171875,"width":178.30209350585938,"height":22,"top":431.66668701171875,"right":559.9687805175781,"bottom":453.66668701171875,"left":381.66668701171875},"4e1d75e5-16dd-4b00":{"x":559.96875,"y":431.66668701171875,"width":54.770835876464844,"height":22,"top":431.66668701171875,"right":614.7395858764648,"bottom":453.66668701171875,"left":559.96875},"257c02bc-c3f0-4e19":{"x":614.7396240234375,"y":431.66668701171875,"width":183.23959350585938,"height":22,"top":431.66668701171875,"right":797.9792175292969,"bottom":453.66668701171875,"left":614.7396240234375},"c2df7204-8ee9-4a2e":{"x":797.9791870117188,"y":431.66668701171875,"width":140.8229217529297,"height":22,"top":431.66668701171875,"right":938.8021087646484,"bottom":453.66668701171875,"left":797.9791870117188},"5dd93068-c022-4bdb":{"x":938.8021240234375,"y":431.66668701171875,"width":120.05208587646484,"height":22,"top":431.66668701171875,"right":1058.8542098999023,"bottom":453.66668701171875,"left":938.8021240234375},"07755d30-62e1-4a1f":{"x":349.66668701171875,"y":463,"width":768,"height":24,"top":463,"right":1117.6666870117188,"bottom":487,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"add4ab5c-9978-4f9b":{"x":397.66668701171875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":437.66668701171875,"bottom":560.6666870117188,"left":397.66668701171875},"dfe84368-f85f-4dba":{"x":397.66668701171875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":437.66668701171875,"bottom":560.6666870117188,"left":397.66668701171875},"ff50a24c-482e-4753":{"x":331.375,"y":492.66668701171875,"width":172.59375,"height":24,"top":492.66668701171875,"right":503.96875,"bottom":516.6666870117188,"left":331.375},"5ff2f27e-e80d-468e":{"x":331.375,"y":492.66668701171875,"width":172.59375,"height":24,"top":492.66668701171875,"right":503.96875,"bottom":516.6666870117188,"left":331.375},"88d2788b-070c-4ba5":{"x":339.375,"y":496.66668701171875,"width":156.59375,"height":16,"top":496.66668701171875,"right":495.96875,"bottom":512.6666870117188,"left":339.375},"017222ed-7256-43f8":{"x":339.375,"y":496,"width":156.59375,"height":16.666667938232422,"top":496,"right":495.96875,"bottom":512.6666679382324,"left":339.375},"86c60d34-213e-491a":{"x":405.16668701171875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":430.16668701171875,"bottom":550.6666870117188,"left":405.16668701171875},"e5ca6ecd-bec0-4b5a":{"x":405.16668701171875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":430.16668701171875,"bottom":550.6666870117188,"left":405.16668701171875},"ff961423-d901-4eb6":{"x":410.16668701171875,"y":533.1666870117188,"width":15,"height":15,"top":533.1666870117188,"right":425.16668701171875,"bottom":548.1666870117188,"left":410.16668701171875},"c6fce410-0af7-455f":{"x":441.66668701171875,"y":504,"width":660,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":441.66668701171875},"245985ad-1b58-4758":{"x":441.66668701171875,"y":504,"width":660,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":441.66668701171875},"8e126868-5968-4212":{"x":441.66668701171875,"y":504,"width":660,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":441.66668701171875},"3800cab4-6404-4885":{"x":441.66668701171875,"y":504,"width":660,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":441.66668701171875},"73a881eb-242e-4ba9":{"x":441.66668701171875,"y":504,"width":660,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":441.66668701171875},"3ee2c1ad-db74-4aad":{"x":449.66668701171875,"y":512,"width":644,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":449.66668701171875},"b487f7c7-5a80-4400":{"x":449.66668701171875,"y":512,"width":644,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":449.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-20.json b/demonstrations/ieckqwf/bboxes/bboxes-20.json new file mode 100644 index 0000000000000000000000000000000000000000..1d60f23b4bf53ae95b2d7d976fd94d2b12c9c694 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-20.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"5a04f383-796a-4127":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-220.6666717529297,"width":1263.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-220.6666717529297,"width":220,"height":2310.125,"top":-220.6666717529297,"right":220,"bottom":2089.4583282470703,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-220.6666717529297,"width":1043.3333740234375,"height":2310.125,"top":-220.6666717529297,"right":1263.3333740234375,"bottom":2089.4583282470703,"left":220},"99a62f96-6364-402f":{"x":220,"y":-212.6666717529297,"width":1027.3333740234375,"height":2286.125,"top":-212.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-212.6666717529297,"width":1027.3333740234375,"height":2286.125,"top":-212.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"196f9843-9577-4c93":{"x":220,"y":-212.6666717529297,"width":1027.3333740234375,"height":2286.125,"top":-212.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-159.6666717529297,"width":1027.3333740234375,"height":2233.125,"top":-159.6666717529297,"right":1247.3333740234375,"bottom":2073.4583282470703,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2085.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1949.4583282470703,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2069.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1933.4583282470703,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2069.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1933.4583282470703,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2069.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1933.4583282470703,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-135.6666717529297,"width":768,"height":2053.125,"top":-135.6666717529297,"right":1117.6666870117188,"bottom":1917.4583282470703,"left":349.66668701171875},"9c7be7cc-0dd0-4522":{"x":349.66668701171875,"y":-55.66666793823242,"width":768,"height":152,"top":-55.66666793823242,"right":1117.6666870117188,"bottom":96.33333206176758,"left":349.66668701171875},"fe7b0910-2cc5-4f44":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"370e6816-b4f3-441e":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"5fde6a21-a20f-4c16":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"a73f94e4-2be1-468e":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":112,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":96.3333330154419,"left":349.66668701171875},"a296e17a-3fbf-4fbe":{"x":349.66668701171875,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":535.6666870117188,"bottom":36.333333015441895,"left":349.66668701171875},"40223ff2-ec67-44bb":{"x":349.66668701171875,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":535.6666870117188,"bottom":36.333333015441895,"left":349.66668701171875},"45a2b5e0-6e0f-4609":{"x":349.66668701171875,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":535.6666870117188,"bottom":36.333333015441895,"left":349.66668701171875},"ec685cad-2276-4dfe":{"x":357.66668701171875,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":527.6666870117188,"bottom":32.333333015441895,"left":357.66668701171875},"b46f8877-710e-4581":{"x":357.66668701171875,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":527.6666870117188,"bottom":8.333333015441895,"left":357.66668701171875},"c3a6512d-dbb1-404e":{"x":357.66668701171875,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":527.6666870117188,"bottom":8.333333015441895,"left":357.66668701171875},"56bb96c0-9d6f-439e":{"x":357.66668701171875,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":527.6666870117188,"bottom":32.33333396911621,"left":357.66668701171875},"caac51c4-cf29-4be9":{"x":357.66668701171875,"y":12.333333969116211,"width":97.83333587646484,"height":16,"top":12.333333969116211,"right":455.5000228881836,"bottom":28.33333396911621,"left":357.66668701171875},"ed315a3b-3fbb-4535":{"x":357.66668701171875,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":373.66668701171875,"bottom":28.33333396911621,"left":357.66668701171875},"12a3f3bd-35fd-48e4":{"x":357.66668701171875,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":373.66668701171875,"bottom":28.33333396911621,"left":357.66668701171875},"ef7e2444-275e-41cb":{"x":357.66668701171875,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":373.66668701171875,"bottom":28.33333396911621,"left":357.66668701171875},"1a80d0e3-e2e4-4443":{"x":377.66668701171875,"y":12.333333969116211,"width":77.83333587646484,"height":16,"top":12.333333969116211,"right":455.5000228881836,"bottom":28.33333396911621,"left":377.66668701171875},"a48a9f2d-2e92-431a":{"x":459.5,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":463.40625,"bottom":32.33333396911621,"left":459.5},"127e909d-96b9-4103":{"x":467.40625,"y":12.333333969116211,"width":4.208333492279053,"height":16,"top":12.333333969116211,"right":471.61458349227905,"bottom":28.33333396911621,"left":467.40625},"fec27fa8-aef4-42a9":{"x":543.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":729.6666870117188,"bottom":36.333333015441895,"left":543.6666870117188},"a917b887-1bea-4203":{"x":543.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":729.6666870117188,"bottom":36.333333015441895,"left":543.6666870117188},"d62b89c4-22f1-4177":{"x":543.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":729.6666870117188,"bottom":36.333333015441895,"left":543.6666870117188},"9fdafbad-19d2-4ad2":{"x":551.6666870117188,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":721.6666870117188,"bottom":32.333333015441895,"left":551.6666870117188},"676aea97-b445-4e7e":{"x":551.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":721.6666870117188,"bottom":8.333333015441895,"left":551.6666870117188},"afb00160-bf5d-4cee":{"x":551.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":721.6666870117188,"bottom":8.333333015441895,"left":551.6666870117188},"0bda2a5c-95d2-426f":{"x":551.6666870117188,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":721.6666870117188,"bottom":32.33333396911621,"left":551.6666870117188},"fefe87b1-9278-4e85":{"x":551.6666870117188,"y":12.333333969116211,"width":121.27083587646484,"height":16,"top":12.333333969116211,"right":672.9375228881836,"bottom":28.33333396911621,"left":551.6666870117188},"2bca0f26-f911-4e14":{"x":551.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":567.6666870117188,"bottom":28.33333396911621,"left":551.6666870117188},"62996fea-cc04-4c37":{"x":551.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":567.6666870117188,"bottom":28.33333396911621,"left":551.6666870117188},"d0f59419-2518-4654":{"x":551.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":567.6666870117188,"bottom":28.33333396911621,"left":551.6666870117188},"5e70e550-40d9-4557":{"x":571.6666870117188,"y":12.333333969116211,"width":101.27083587646484,"height":16,"top":12.333333969116211,"right":672.9375228881836,"bottom":28.33333396911621,"left":571.6666870117188},"c6588d87-4279-4789":{"x":676.9375,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":680.84375,"bottom":32.33333396911621,"left":676.9375},"08f2aedb-ea0b-42ce":{"x":684.84375,"y":12.333333969116211,"width":6.927083492279053,"height":16,"top":12.333333969116211,"right":691.770833492279,"bottom":28.33333396911621,"left":684.84375},"781a4dea-b71f-4339":{"x":737.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":923.6666870117188,"bottom":36.333333015441895,"left":737.6666870117188},"9ab0924f-002a-4131":{"x":737.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":923.6666870117188,"bottom":36.333333015441895,"left":737.6666870117188},"41332a3e-8183-42b7":{"x":737.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":923.6666870117188,"bottom":36.333333015441895,"left":737.6666870117188},"fb5bd943-9d4b-498b":{"x":745.6666870117188,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":915.6666870117188,"bottom":32.333333015441895,"left":745.6666870117188},"91c48008-66f6-4822":{"x":745.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":915.6666870117188,"bottom":8.333333015441895,"left":745.6666870117188},"7fc3a830-7aea-4b6b":{"x":745.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":915.6666870117188,"bottom":8.333333015441895,"left":745.6666870117188},"c69d470c-b20e-43c0":{"x":745.6666870117188,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":915.6666870117188,"bottom":32.33333396911621,"left":745.6666870117188},"89a25add-4f94-4257":{"x":745.6666870117188,"y":12.333333969116211,"width":137.3125,"height":16,"top":12.333333969116211,"right":882.9791870117188,"bottom":28.33333396911621,"left":745.6666870117188},"95219df4-5558-4819":{"x":745.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":761.6666870117188,"bottom":28.33333396911621,"left":745.6666870117188},"5683a5bd-85e2-4b20":{"x":745.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":761.6666870117188,"bottom":28.33333396911621,"left":745.6666870117188},"4b8a4caa-fa92-4797":{"x":745.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":761.6666870117188,"bottom":28.33333396911621,"left":745.6666870117188},"2c56cac0-24b7-4552":{"x":765.6666870117188,"y":12.333333969116211,"width":117.3125,"height":16,"top":12.333333969116211,"right":882.9791870117188,"bottom":28.33333396911621,"left":765.6666870117188},"4ddbc830-f8c6-4938":{"x":886.9791870117188,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":890.8854370117188,"bottom":32.33333396911621,"left":886.9791870117188},"35380cbf-159b-4c1f":{"x":894.8854370117188,"y":12.333333969116211,"width":7.1354169845581055,"height":16,"top":12.333333969116211,"right":902.0208539962769,"bottom":28.33333396911621,"left":894.8854370117188},"3cf6dcc3-2dca-4390":{"x":931.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":36.333333015441895,"left":931.6666870117188},"bf09bc69-cf90-4c54":{"x":931.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":36.333333015441895,"left":931.6666870117188},"f7f10518-f6a2-40ab":{"x":931.6666870117188,"y":-15.666666984558105,"width":186,"height":52,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":36.333333015441895,"left":931.6666870117188},"773ad79f-ae38-49d6":{"x":939.6666870117188,"y":-7.6666669845581055,"width":170,"height":40,"top":-7.6666669845581055,"right":1109.6666870117188,"bottom":32.333333015441895,"left":939.6666870117188},"c289791c-7f08-4dd6":{"x":939.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":1109.6666870117188,"bottom":8.333333015441895,"left":939.6666870117188},"44b18b34-feac-4e3a":{"x":939.6666870117188,"y":-7.6666669845581055,"width":170,"height":16,"top":-7.6666669845581055,"right":1109.6666870117188,"bottom":8.333333015441895,"left":939.6666870117188},"846721d4-3cf2-428c":{"x":939.6666870117188,"y":8.333333969116211,"width":170,"height":24,"top":8.333333969116211,"right":1109.6666870117188,"bottom":32.33333396911621,"left":939.6666870117188},"20a09b68-f784-477e":{"x":939.6666870117188,"y":12.333333969116211,"width":66.79167175292969,"height":16,"top":12.333333969116211,"right":1006.4583587646484,"bottom":28.33333396911621,"left":939.6666870117188},"43cca39e-0022-4fc0":{"x":939.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":955.6666870117188,"bottom":28.33333396911621,"left":939.6666870117188},"892f29c6-6401-4700":{"x":939.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":955.6666870117188,"bottom":28.33333396911621,"left":939.6666870117188},"1fef1718-b08f-4905":{"x":939.6666870117188,"y":12.333333969116211,"width":16,"height":16,"top":12.333333969116211,"right":955.6666870117188,"bottom":28.33333396911621,"left":939.6666870117188},"9e4f1485-534c-4283":{"x":959.6666870117188,"y":12.333333969116211,"width":46.79166793823242,"height":16,"top":12.333333969116211,"right":1006.4583549499512,"bottom":28.33333396911621,"left":959.6666870117188},"b5b4164a-f4c1-45d4":{"x":1010.4583740234375,"y":8.333333969116211,"width":3.90625,"height":24,"top":8.333333969116211,"right":1014.3646240234375,"bottom":32.33333396911621,"left":1010.4583740234375},"5a6b1ec7-5ede-4c66":{"x":1018.3646240234375,"y":12.333333969116211,"width":7.770833492279053,"height":16,"top":12.333333969116211,"right":1026.1354575157166,"bottom":28.33333396911621,"left":1018.3646240234375},"5456479d-7e77-4ec9":{"x":349.66668701171875,"y":44.333335876464844,"width":186,"height":52,"top":44.333335876464844,"right":535.6666870117188,"bottom":96.33333587646484,"left":349.66668701171875},"039eefbc-512d-4f3b":{"x":349.66668701171875,"y":44.333335876464844,"width":186,"height":52,"top":44.333335876464844,"right":535.6666870117188,"bottom":96.33333587646484,"left":349.66668701171875},"64bd20ee-4420-43c3":{"x":349.66668701171875,"y":44.333335876464844,"width":186,"height":52,"top":44.333335876464844,"right":535.6666870117188,"bottom":96.33333587646484,"left":349.66668701171875},"1db606b7-036d-431d":{"x":357.66668701171875,"y":52.333335876464844,"width":170,"height":40,"top":52.333335876464844,"right":527.6666870117188,"bottom":92.33333587646484,"left":357.66668701171875},"30f04103-6371-48f2":{"x":357.66668701171875,"y":52.333335876464844,"width":170,"height":16,"top":52.333335876464844,"right":527.6666870117188,"bottom":68.33333587646484,"left":357.66668701171875},"bb8889c9-609c-456b":{"x":357.66668701171875,"y":52.333335876464844,"width":170,"height":16,"top":52.333335876464844,"right":527.6666870117188,"bottom":68.33333587646484,"left":357.66668701171875},"32542a4a-51b0-4ad2":{"x":357.66668701171875,"y":68.33333587646484,"width":170,"height":24,"top":68.33333587646484,"right":527.6666870117188,"bottom":92.33333587646484,"left":357.66668701171875},"af0080d4-ffa5-4cb9":{"x":357.66668701171875,"y":72.33333587646484,"width":105.0625,"height":16,"top":72.33333587646484,"right":462.72918701171875,"bottom":88.33333587646484,"left":357.66668701171875},"4181bffb-648b-4373":{"x":357.66668701171875,"y":72.33333587646484,"width":16,"height":16,"top":72.33333587646484,"right":373.66668701171875,"bottom":88.33333587646484,"left":357.66668701171875},"116e6b00-d660-4879":{"x":357.66668701171875,"y":72.33333587646484,"width":16,"height":16,"top":72.33333587646484,"right":373.66668701171875,"bottom":88.33333587646484,"left":357.66668701171875},"d454e062-474a-4f3d":{"x":357.66668701171875,"y":72.33333587646484,"width":16,"height":16,"top":72.33333587646484,"right":373.66668701171875,"bottom":88.33333587646484,"left":357.66668701171875},"208023bb-e533-4054":{"x":377.66668701171875,"y":72.33333587646484,"width":85.0625,"height":16,"top":72.33333587646484,"right":462.72918701171875,"bottom":88.33333587646484,"left":377.66668701171875},"5999ad85-9f25-4c7e":{"x":466.72918701171875,"y":68.33333587646484,"width":3.90625,"height":24,"top":68.33333587646484,"right":470.63543701171875,"bottom":92.33333587646484,"left":466.72918701171875},"d6d5cffd-7197-40c6":{"x":474.63543701171875,"y":72.33333587646484,"width":7.677083492279053,"height":16,"top":72.33333587646484,"right":482.3125205039978,"bottom":88.33333587646484,"left":474.63543701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":120.33333587646484,"width":768,"height":1595.125,"top":120.33333587646484,"right":1117.6666870117188,"bottom":1715.4583358764648,"left":349.66668701171875},"9b1f0199-999b-4b05":{"x":349.66668701171875,"y":120.33333587646484,"width":768,"height":32,"top":120.33333587646484,"right":1117.6666870117188,"bottom":152.33333587646484,"left":349.66668701171875},"4bac0e14-1da6-4aa6":{"x":349.66668701171875,"y":120.33333587646484,"width":768,"height":24,"top":120.33333587646484,"right":1117.6666870117188,"bottom":144.33333587646484,"left":349.66668701171875},"262690b6-c5ce-4cce":{"x":349.66668701171875,"y":120.33333587646484,"width":87.30208587646484,"height":24,"top":120.33333587646484,"right":436.9687728881836,"bottom":144.33333587646484,"left":349.66668701171875},"5d65b1cc-92a6-4e49":{"x":349.66668701171875,"y":120.33333587646484,"width":87.30208587646484,"height":24,"top":120.33333587646484,"right":436.9687728881836,"bottom":144.33333587646484,"left":349.66668701171875},"3d35c129-9293-4201":{"x":349.66668701171875,"y":120.33333587646484,"width":20,"height":24,"top":120.33333587646484,"right":369.66668701171875,"bottom":144.33333587646484,"left":349.66668701171875},"41d62912-c7c8-421a":{"x":349.66668701171875,"y":123.66667175292969,"width":20,"height":16,"top":123.66667175292969,"right":369.66668701171875,"bottom":139.6666717529297,"left":349.66668701171875},"d05a1854-6f39-424d":{"x":352.66668701171875,"y":124.66667175292969,"width":14,"height":14,"top":124.66667175292969,"right":366.66668701171875,"bottom":138.6666717529297,"left":352.66668701171875},"411509c0-5b02-4dd4":{"x":377.66668701171875,"y":120.33333587646484,"width":59.302085876464844,"height":24,"top":120.33333587646484,"right":436.9687728881836,"bottom":144.33333587646484,"left":377.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":152.33334350585938,"width":768,"height":1523.125,"top":152.33334350585938,"right":1117.6666870117188,"bottom":1675.4583435058594,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":152.33334350585938,"width":768,"height":1523.125,"top":152.33334350585938,"right":1117.6666870117188,"bottom":1675.4583435058594,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":152.33334350585938,"width":768,"height":1523.125,"top":152.33334350585938,"right":1117.6666870117188,"bottom":1675.4583435058594,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":153,"width":768,"height":634,"top":153,"right":1117.6666870117188,"bottom":787,"left":349.66668701171875},"60e543e9-3c49-4101":{"x":349.66668701171875,"y":153,"width":514.625,"height":22,"top":153,"right":864.2916870117188,"bottom":175,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":184.33334350585938,"width":768,"height":572,"top":184.33334350585938,"right":1117.6666870117188,"bottom":756.3333435058594,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":184.33334350585938,"width":742,"height":50,"top":184.33334350585938,"right":1117.6666870117188,"bottom":234.33334350585938,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":185,"width":708.4896240234375,"height":46,"top":185,"right":1090.1563110351562,"bottom":231,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":185,"width":283.57293701171875,"height":22,"top":185,"right":665.2396240234375,"bottom":207,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":185,"width":283.57293701171875,"height":22,"top":185,"right":665.2396240234375,"bottom":207,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":185,"width":708.4896240234375,"height":46,"top":185,"right":1090.1563110351562,"bottom":231,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":209,"width":23.36458396911621,"height":22,"top":209,"right":730.062520980835,"bottom":231,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":209,"width":23.36458396911621,"height":22,"top":209,"right":730.062520980835,"bottom":231,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":209,"width":16,"height":22,"top":209,"right":726.6979370117188,"bottom":231,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":205.5416717529297,"width":16,"height":24,"top":205.5416717529297,"right":726.6979370117188,"bottom":229.5416717529297,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":205.5416717529297,"width":16,"height":24,"top":205.5416717529297,"right":726.6979370117188,"bottom":229.5416717529297,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":209.5416717529297,"width":16,"height":16,"top":209.5416717529297,"right":726.6979370117188,"bottom":225.5416717529297,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":242.33334350585938,"width":742,"height":50,"top":242.33334350585938,"right":1117.6666870117188,"bottom":292.3333435058594,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":243,"width":728.6979370117188,"height":46,"top":243,"right":1110.3646240234375,"bottom":289,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":243,"width":289.28125,"height":22,"top":243,"right":670.9479370117188,"bottom":265,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":243,"width":289.28125,"height":22,"top":243,"right":670.9479370117188,"bottom":265,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":243,"width":728.6979370117188,"height":46,"top":243,"right":1110.3646240234375,"bottom":289,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":267,"width":23.36458396911621,"height":22,"top":267,"right":726.718770980835,"bottom":289,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":267,"width":23.36458396911621,"height":22,"top":267,"right":726.718770980835,"bottom":289,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":267,"width":16,"height":22,"top":267,"right":723.3541870117188,"bottom":289,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":263.54168701171875,"width":16,"height":24,"top":263.54168701171875,"right":723.3541870117188,"bottom":287.54168701171875,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":263.54168701171875,"width":16,"height":24,"top":263.54168701171875,"right":723.3541870117188,"bottom":287.54168701171875,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":267.54168701171875,"width":16,"height":16,"top":267.54168701171875,"right":723.3541870117188,"bottom":283.54168701171875,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":300.3333435058594,"width":742,"height":50,"top":300.3333435058594,"right":1117.6666870117188,"bottom":350.3333435058594,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":301,"width":659.8125,"height":46,"top":301,"right":1041.4791870117188,"bottom":347,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":301,"width":173.875,"height":22,"top":301,"right":555.5416870117188,"bottom":323,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":301,"width":173.875,"height":22,"top":301,"right":555.5416870117188,"bottom":323,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":301,"width":659.8125,"height":46,"top":301,"right":1041.4791870117188,"bottom":347,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":325,"width":23.36458396911621,"height":22,"top":325,"right":481.0520839691162,"bottom":347,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":325,"width":23.36458396911621,"height":22,"top":325,"right":481.0520839691162,"bottom":347,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":325,"width":16,"height":22,"top":325,"right":477.6875,"bottom":347,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":321.54168701171875,"width":16,"height":24,"top":321.54168701171875,"right":477.6875,"bottom":345.54168701171875,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":321.54168701171875,"width":16,"height":24,"top":321.54168701171875,"right":477.6875,"bottom":345.54168701171875,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":325.54168701171875,"width":16,"height":16,"top":325.54168701171875,"right":477.6875,"bottom":341.54168701171875,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":358.3333435058594,"width":742,"height":50,"top":358.3333435058594,"right":1117.6666870117188,"bottom":408.3333435058594,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":359,"width":659.625,"height":46,"top":359,"right":1041.2916870117188,"bottom":405,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":359,"width":193.30209350585938,"height":22,"top":359,"right":574.9687805175781,"bottom":381,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":359,"width":193.30209350585938,"height":22,"top":359,"right":574.9687805175781,"bottom":381,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":359,"width":659.625,"height":46,"top":359,"right":1041.2916870117188,"bottom":405,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":383,"width":23.36458396911621,"height":22,"top":383,"right":621.5208339691162,"bottom":405,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":383,"width":23.36458396911621,"height":22,"top":383,"right":621.5208339691162,"bottom":405,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":383,"width":16,"height":22,"top":383,"right":618.15625,"bottom":405,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":379.54168701171875,"width":16,"height":24,"top":379.54168701171875,"right":618.15625,"bottom":403.54168701171875,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":379.54168701171875,"width":16,"height":24,"top":379.54168701171875,"right":618.15625,"bottom":403.54168701171875,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":383.54168701171875,"width":16,"height":16,"top":383.54168701171875,"right":618.15625,"bottom":399.54168701171875,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":416.3333435058594,"width":742,"height":26,"top":416.3333435058594,"right":1117.6666870117188,"bottom":442.3333435058594,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":417,"width":700.5208740234375,"height":22,"top":417,"right":1082.1875610351562,"bottom":439,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":417,"width":178.2916717529297,"height":22,"top":417,"right":559.9583587646484,"bottom":439,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":417,"width":178.2916717529297,"height":22,"top":417,"right":559.9583587646484,"bottom":439,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":417,"width":498.8645935058594,"height":22,"top":417,"right":1058.8229675292969,"bottom":439,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":417,"width":23.36458396911621,"height":22,"top":417,"right":1082.1875820159912,"bottom":439,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":417,"width":23.36458396911621,"height":22,"top":417,"right":1082.1875820159912,"bottom":439,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":417,"width":16,"height":22,"top":417,"right":1078.822998046875,"bottom":439,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":413.54168701171875,"width":16,"height":24,"top":413.54168701171875,"right":1078.822998046875,"bottom":437.54168701171875,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":413.54168701171875,"width":16,"height":24,"top":413.54168701171875,"right":1078.822998046875,"bottom":437.54168701171875,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":417.54168701171875,"width":16,"height":16,"top":417.54168701171875,"right":1078.822998046875,"bottom":433.54168701171875,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":450.3333435058594,"width":742,"height":50,"top":450.3333435058594,"right":1117.6666870117188,"bottom":500.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":451,"width":730.4479370117188,"height":46,"top":451,"right":1112.1146240234375,"bottom":497,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":451,"width":441.9583435058594,"height":22,"top":451,"right":823.6250305175781,"bottom":473,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":451,"width":441.9583435058594,"height":22,"top":451,"right":823.6250305175781,"bottom":473,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":451,"width":730.4479370117188,"height":46,"top":451,"right":1112.1146240234375,"bottom":497,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":475,"width":23.36458396911621,"height":22,"top":475,"right":840.156270980835,"bottom":497,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":475,"width":23.36458396911621,"height":22,"top":475,"right":840.156270980835,"bottom":497,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":475,"width":16,"height":22,"top":475,"right":836.7916870117188,"bottom":497,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":471.54168701171875,"width":16,"height":24,"top":471.54168701171875,"right":836.7916870117188,"bottom":495.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":471.54168701171875,"width":16,"height":24,"top":471.54168701171875,"right":836.7916870117188,"bottom":495.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":475.54168701171875,"width":16,"height":16,"top":475.54168701171875,"right":836.7916870117188,"bottom":491.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":508.3333435058594,"width":742,"height":74,"top":508.3333435058594,"right":1117.6666870117188,"bottom":582.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":509,"width":735.3646240234375,"height":70,"top":509,"right":1117.0313110351562,"bottom":579,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":509,"width":257.3020935058594,"height":22,"top":509,"right":638.9687805175781,"bottom":531,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":509,"width":257.3020935058594,"height":22,"top":509,"right":638.9687805175781,"bottom":531,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":509,"width":735.3646240234375,"height":46,"top":509,"right":1117.0313110351562,"bottom":555,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":557,"width":23.36458396911621,"height":22,"top":557,"right":405.03127098083496,"bottom":579,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":557,"width":23.36458396911621,"height":22,"top":557,"right":405.03127098083496,"bottom":579,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":557,"width":16,"height":22,"top":557,"right":401.66668701171875,"bottom":579,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":553.5416870117188,"width":16,"height":24,"top":553.5416870117188,"right":401.66668701171875,"bottom":577.5416870117188,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":553.5416870117188,"width":16,"height":24,"top":553.5416870117188,"right":401.66668701171875,"bottom":577.5416870117188,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":557.5416870117188,"width":16,"height":16,"top":557.5416870117188,"right":401.66668701171875,"bottom":573.5416870117188,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":590.3333740234375,"width":742,"height":50,"top":590.3333740234375,"right":1117.6666870117188,"bottom":640.3333740234375,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":591,"width":688.1146240234375,"height":46,"top":591,"right":1069.7813110351562,"bottom":637,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":591,"width":172.7291717529297,"height":22,"top":591,"right":554.3958587646484,"bottom":613,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":591,"width":172.7291717529297,"height":22,"top":591,"right":554.3958587646484,"bottom":613,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":591,"width":688.1146240234375,"height":46,"top":591,"right":1069.7813110351562,"bottom":637,"left":381.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-25.json b/demonstrations/ieckqwf/bboxes/bboxes-25.json new file mode 100644 index 0000000000000000000000000000000000000000..0f361e3d18daa6c19b9221b7bfd07cf51c692ee3 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-25.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-420.66668701171875,"width":220,"height":2310.125,"top":-420.66668701171875,"right":220,"bottom":1889.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-420.66668701171875,"width":1043.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-359.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-359.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2085.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1749.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2053.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1717.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-79.66667175292969,"width":768,"height":1595.125,"top":-79.66667175292969,"right":1117.6666870117188,"bottom":1515.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-47,"width":768,"height":634,"top":-47,"right":1117.6666870117188,"bottom":587,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":572,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":556.3333330154419,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":-15.666666984558105,"width":742,"height":50,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":34.333333015441895,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":9,"width":16,"height":22,"top":9,"right":726.6979370117188,"bottom":31,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":9.541666984558105,"width":16,"height":16,"top":9.541666984558105,"right":726.6979370117188,"bottom":25.541666984558105,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":42.333335876464844,"width":742,"height":50,"top":42.333335876464844,"right":1117.6666870117188,"bottom":92.33333587646484,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":67,"width":16,"height":22,"top":67,"right":723.3541870117188,"bottom":89,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":67.54167175292969,"width":16,"height":16,"top":67.54167175292969,"right":723.3541870117188,"bottom":83.54167175292969,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":100.33333587646484,"width":742,"height":50,"top":100.33333587646484,"right":1117.6666870117188,"bottom":150.33333587646484,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":125,"width":16,"height":22,"top":125,"right":477.6875,"bottom":147,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":125.54167175292969,"width":16,"height":16,"top":125.54167175292969,"right":477.6875,"bottom":141.5416717529297,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":158.33334350585938,"width":742,"height":50,"top":158.33334350585938,"right":1117.6666870117188,"bottom":208.33334350585938,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":183,"width":16,"height":22,"top":183,"right":618.15625,"bottom":205,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":183.5416717529297,"width":16,"height":16,"top":183.5416717529297,"right":618.15625,"bottom":199.5416717529297,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":216.33334350585938,"width":742,"height":26,"top":216.33334350585938,"right":1117.6666870117188,"bottom":242.33334350585938,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":217,"width":700.5208740234375,"height":22,"top":217,"right":1082.1875610351562,"bottom":239,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":217,"width":498.8645935058594,"height":22,"top":217,"right":1058.8229675292969,"bottom":239,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":217,"width":16,"height":22,"top":217,"right":1078.822998046875,"bottom":239,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":217.5416717529297,"width":16,"height":16,"top":217.5416717529297,"right":1078.822998046875,"bottom":233.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":250.33334350585938,"width":742,"height":50,"top":250.33334350585938,"right":1117.6666870117188,"bottom":300.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":275,"width":16,"height":22,"top":275,"right":836.7916870117188,"bottom":297,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":275.54168701171875,"width":16,"height":16,"top":275.54168701171875,"right":836.7916870117188,"bottom":291.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":308.3333435058594,"width":742,"height":74,"top":308.3333435058594,"right":1117.6666870117188,"bottom":382.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":70,"top":309,"right":1117.0313110351562,"bottom":379,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":46,"top":309,"right":1117.0313110351562,"bottom":355,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":357,"width":16,"height":22,"top":357,"right":401.66668701171875,"bottom":379,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":357.54168701171875,"width":16,"height":16,"top":357.54168701171875,"right":401.66668701171875,"bottom":373.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":390.3333435058594,"width":742,"height":50,"top":390.3333435058594,"right":1117.6666870117188,"bottom":440.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":415,"width":16,"height":22,"top":415,"right":477.6875,"bottom":437,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":415.54168701171875,"width":16,"height":16,"top":415.54168701171875,"right":477.6875,"bottom":431.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":448.3333435058594,"width":742,"height":50,"top":448.3333435058594,"right":1117.6666870117188,"bottom":498.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":473,"width":16,"height":22,"top":473,"right":796.0208740234375,"bottom":495,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":473.54168701171875,"width":16,"height":16,"top":473.54168701171875,"right":796.0208740234375,"bottom":489.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":506.3333435058594,"width":742,"height":50,"top":506.3333435058594,"right":1117.6666870117188,"bottom":556.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":531,"width":16,"height":22,"top":531,"right":556.8541870117188,"bottom":553,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":531.5416870117188,"width":16,"height":16,"top":531.5416870117188,"right":556.8541870117188,"bottom":547.5416870117188,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":565,"width":729.3333740234375,"height":22,"top":565,"right":1079.0000610351562,"bottom":587,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-28.json b/demonstrations/ieckqwf/bboxes/bboxes-28.json new file mode 100644 index 0000000000000000000000000000000000000000..0f361e3d18daa6c19b9221b7bfd07cf51c692ee3 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-28.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-420.66668701171875,"width":220,"height":2310.125,"top":-420.66668701171875,"right":220,"bottom":1889.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-420.66668701171875,"width":1043.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-359.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-359.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2085.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1749.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2053.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1717.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-79.66667175292969,"width":768,"height":1595.125,"top":-79.66667175292969,"right":1117.6666870117188,"bottom":1515.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-47,"width":768,"height":634,"top":-47,"right":1117.6666870117188,"bottom":587,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":572,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":556.3333330154419,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":-15.666666984558105,"width":742,"height":50,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":34.333333015441895,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":9,"width":16,"height":22,"top":9,"right":726.6979370117188,"bottom":31,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":9.541666984558105,"width":16,"height":16,"top":9.541666984558105,"right":726.6979370117188,"bottom":25.541666984558105,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":42.333335876464844,"width":742,"height":50,"top":42.333335876464844,"right":1117.6666870117188,"bottom":92.33333587646484,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":67,"width":16,"height":22,"top":67,"right":723.3541870117188,"bottom":89,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":67.54167175292969,"width":16,"height":16,"top":67.54167175292969,"right":723.3541870117188,"bottom":83.54167175292969,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":100.33333587646484,"width":742,"height":50,"top":100.33333587646484,"right":1117.6666870117188,"bottom":150.33333587646484,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":125,"width":16,"height":22,"top":125,"right":477.6875,"bottom":147,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":125.54167175292969,"width":16,"height":16,"top":125.54167175292969,"right":477.6875,"bottom":141.5416717529297,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":158.33334350585938,"width":742,"height":50,"top":158.33334350585938,"right":1117.6666870117188,"bottom":208.33334350585938,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":183,"width":16,"height":22,"top":183,"right":618.15625,"bottom":205,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":183.5416717529297,"width":16,"height":16,"top":183.5416717529297,"right":618.15625,"bottom":199.5416717529297,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":216.33334350585938,"width":742,"height":26,"top":216.33334350585938,"right":1117.6666870117188,"bottom":242.33334350585938,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":217,"width":700.5208740234375,"height":22,"top":217,"right":1082.1875610351562,"bottom":239,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":217,"width":498.8645935058594,"height":22,"top":217,"right":1058.8229675292969,"bottom":239,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":217,"width":16,"height":22,"top":217,"right":1078.822998046875,"bottom":239,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":217.5416717529297,"width":16,"height":16,"top":217.5416717529297,"right":1078.822998046875,"bottom":233.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":250.33334350585938,"width":742,"height":50,"top":250.33334350585938,"right":1117.6666870117188,"bottom":300.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":275,"width":16,"height":22,"top":275,"right":836.7916870117188,"bottom":297,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":275.54168701171875,"width":16,"height":16,"top":275.54168701171875,"right":836.7916870117188,"bottom":291.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":308.3333435058594,"width":742,"height":74,"top":308.3333435058594,"right":1117.6666870117188,"bottom":382.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":70,"top":309,"right":1117.0313110351562,"bottom":379,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":46,"top":309,"right":1117.0313110351562,"bottom":355,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":357,"width":16,"height":22,"top":357,"right":401.66668701171875,"bottom":379,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":357.54168701171875,"width":16,"height":16,"top":357.54168701171875,"right":401.66668701171875,"bottom":373.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":390.3333435058594,"width":742,"height":50,"top":390.3333435058594,"right":1117.6666870117188,"bottom":440.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":415,"width":16,"height":22,"top":415,"right":477.6875,"bottom":437,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":415.54168701171875,"width":16,"height":16,"top":415.54168701171875,"right":477.6875,"bottom":431.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":448.3333435058594,"width":742,"height":50,"top":448.3333435058594,"right":1117.6666870117188,"bottom":498.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":473,"width":16,"height":22,"top":473,"right":796.0208740234375,"bottom":495,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":473.54168701171875,"width":16,"height":16,"top":473.54168701171875,"right":796.0208740234375,"bottom":489.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":506.3333435058594,"width":742,"height":50,"top":506.3333435058594,"right":1117.6666870117188,"bottom":556.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":531,"width":16,"height":22,"top":531,"right":556.8541870117188,"bottom":553,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":531.5416870117188,"width":16,"height":16,"top":531.5416870117188,"right":556.8541870117188,"bottom":547.5416870117188,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":565,"width":729.3333740234375,"height":22,"top":565,"right":1079.0000610351562,"bottom":587,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-32.json b/demonstrations/ieckqwf/bboxes/bboxes-32.json new file mode 100644 index 0000000000000000000000000000000000000000..0f361e3d18daa6c19b9221b7bfd07cf51c692ee3 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-32.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-420.66668701171875,"width":220,"height":2310.125,"top":-420.66668701171875,"right":220,"bottom":1889.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-420.66668701171875,"width":1043.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-359.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-359.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2085.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1749.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2053.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1717.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-79.66667175292969,"width":768,"height":1595.125,"top":-79.66667175292969,"right":1117.6666870117188,"bottom":1515.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-47,"width":768,"height":634,"top":-47,"right":1117.6666870117188,"bottom":587,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":572,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":556.3333330154419,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":-15.666666984558105,"width":742,"height":50,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":34.333333015441895,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":9,"width":16,"height":22,"top":9,"right":726.6979370117188,"bottom":31,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":9.541666984558105,"width":16,"height":16,"top":9.541666984558105,"right":726.6979370117188,"bottom":25.541666984558105,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":42.333335876464844,"width":742,"height":50,"top":42.333335876464844,"right":1117.6666870117188,"bottom":92.33333587646484,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":67,"width":16,"height":22,"top":67,"right":723.3541870117188,"bottom":89,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":67.54167175292969,"width":16,"height":16,"top":67.54167175292969,"right":723.3541870117188,"bottom":83.54167175292969,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":100.33333587646484,"width":742,"height":50,"top":100.33333587646484,"right":1117.6666870117188,"bottom":150.33333587646484,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":125,"width":16,"height":22,"top":125,"right":477.6875,"bottom":147,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":125.54167175292969,"width":16,"height":16,"top":125.54167175292969,"right":477.6875,"bottom":141.5416717529297,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":158.33334350585938,"width":742,"height":50,"top":158.33334350585938,"right":1117.6666870117188,"bottom":208.33334350585938,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":183,"width":16,"height":22,"top":183,"right":618.15625,"bottom":205,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":183.5416717529297,"width":16,"height":16,"top":183.5416717529297,"right":618.15625,"bottom":199.5416717529297,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":216.33334350585938,"width":742,"height":26,"top":216.33334350585938,"right":1117.6666870117188,"bottom":242.33334350585938,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":217,"width":700.5208740234375,"height":22,"top":217,"right":1082.1875610351562,"bottom":239,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":217,"width":498.8645935058594,"height":22,"top":217,"right":1058.8229675292969,"bottom":239,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":217,"width":16,"height":22,"top":217,"right":1078.822998046875,"bottom":239,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":217.5416717529297,"width":16,"height":16,"top":217.5416717529297,"right":1078.822998046875,"bottom":233.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":250.33334350585938,"width":742,"height":50,"top":250.33334350585938,"right":1117.6666870117188,"bottom":300.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":275,"width":16,"height":22,"top":275,"right":836.7916870117188,"bottom":297,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":275.54168701171875,"width":16,"height":16,"top":275.54168701171875,"right":836.7916870117188,"bottom":291.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":308.3333435058594,"width":742,"height":74,"top":308.3333435058594,"right":1117.6666870117188,"bottom":382.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":70,"top":309,"right":1117.0313110351562,"bottom":379,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":46,"top":309,"right":1117.0313110351562,"bottom":355,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":357,"width":16,"height":22,"top":357,"right":401.66668701171875,"bottom":379,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":357.54168701171875,"width":16,"height":16,"top":357.54168701171875,"right":401.66668701171875,"bottom":373.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":390.3333435058594,"width":742,"height":50,"top":390.3333435058594,"right":1117.6666870117188,"bottom":440.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":415,"width":16,"height":22,"top":415,"right":477.6875,"bottom":437,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":415.54168701171875,"width":16,"height":16,"top":415.54168701171875,"right":477.6875,"bottom":431.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":448.3333435058594,"width":742,"height":50,"top":448.3333435058594,"right":1117.6666870117188,"bottom":498.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":473,"width":16,"height":22,"top":473,"right":796.0208740234375,"bottom":495,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":473.54168701171875,"width":16,"height":16,"top":473.54168701171875,"right":796.0208740234375,"bottom":489.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":506.3333435058594,"width":742,"height":50,"top":506.3333435058594,"right":1117.6666870117188,"bottom":556.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":531,"width":16,"height":22,"top":531,"right":556.8541870117188,"bottom":553,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":531.5416870117188,"width":16,"height":16,"top":531.5416870117188,"right":556.8541870117188,"bottom":547.5416870117188,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":565,"width":729.3333740234375,"height":22,"top":565,"right":1079.0000610351562,"bottom":587,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-34.json b/demonstrations/ieckqwf/bboxes/bboxes-34.json new file mode 100644 index 0000000000000000000000000000000000000000..0f361e3d18daa6c19b9221b7bfd07cf51c692ee3 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-34.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-420.66668701171875,"width":220,"height":2310.125,"top":-420.66668701171875,"right":220,"bottom":1889.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-420.66668701171875,"width":1043.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-359.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-359.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2085.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1749.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2053.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1717.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-79.66667175292969,"width":768,"height":1595.125,"top":-79.66667175292969,"right":1117.6666870117188,"bottom":1515.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-47,"width":768,"height":634,"top":-47,"right":1117.6666870117188,"bottom":587,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":572,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":556.3333330154419,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":-15.666666984558105,"width":742,"height":50,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":34.333333015441895,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":9,"width":16,"height":22,"top":9,"right":726.6979370117188,"bottom":31,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":9.541666984558105,"width":16,"height":16,"top":9.541666984558105,"right":726.6979370117188,"bottom":25.541666984558105,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":42.333335876464844,"width":742,"height":50,"top":42.333335876464844,"right":1117.6666870117188,"bottom":92.33333587646484,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":67,"width":16,"height":22,"top":67,"right":723.3541870117188,"bottom":89,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":67.54167175292969,"width":16,"height":16,"top":67.54167175292969,"right":723.3541870117188,"bottom":83.54167175292969,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":100.33333587646484,"width":742,"height":50,"top":100.33333587646484,"right":1117.6666870117188,"bottom":150.33333587646484,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":125,"width":16,"height":22,"top":125,"right":477.6875,"bottom":147,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":125.54167175292969,"width":16,"height":16,"top":125.54167175292969,"right":477.6875,"bottom":141.5416717529297,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":158.33334350585938,"width":742,"height":50,"top":158.33334350585938,"right":1117.6666870117188,"bottom":208.33334350585938,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":183,"width":16,"height":22,"top":183,"right":618.15625,"bottom":205,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":183.5416717529297,"width":16,"height":16,"top":183.5416717529297,"right":618.15625,"bottom":199.5416717529297,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":216.33334350585938,"width":742,"height":26,"top":216.33334350585938,"right":1117.6666870117188,"bottom":242.33334350585938,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":217,"width":700.5208740234375,"height":22,"top":217,"right":1082.1875610351562,"bottom":239,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":217,"width":498.8645935058594,"height":22,"top":217,"right":1058.8229675292969,"bottom":239,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":217,"width":16,"height":22,"top":217,"right":1078.822998046875,"bottom":239,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":217.5416717529297,"width":16,"height":16,"top":217.5416717529297,"right":1078.822998046875,"bottom":233.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":250.33334350585938,"width":742,"height":50,"top":250.33334350585938,"right":1117.6666870117188,"bottom":300.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":275,"width":16,"height":22,"top":275,"right":836.7916870117188,"bottom":297,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":275.54168701171875,"width":16,"height":16,"top":275.54168701171875,"right":836.7916870117188,"bottom":291.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":308.3333435058594,"width":742,"height":74,"top":308.3333435058594,"right":1117.6666870117188,"bottom":382.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":70,"top":309,"right":1117.0313110351562,"bottom":379,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":46,"top":309,"right":1117.0313110351562,"bottom":355,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":357,"width":16,"height":22,"top":357,"right":401.66668701171875,"bottom":379,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":357.54168701171875,"width":16,"height":16,"top":357.54168701171875,"right":401.66668701171875,"bottom":373.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":390.3333435058594,"width":742,"height":50,"top":390.3333435058594,"right":1117.6666870117188,"bottom":440.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":415,"width":16,"height":22,"top":415,"right":477.6875,"bottom":437,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":415.54168701171875,"width":16,"height":16,"top":415.54168701171875,"right":477.6875,"bottom":431.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":448.3333435058594,"width":742,"height":50,"top":448.3333435058594,"right":1117.6666870117188,"bottom":498.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":473,"width":16,"height":22,"top":473,"right":796.0208740234375,"bottom":495,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":473.54168701171875,"width":16,"height":16,"top":473.54168701171875,"right":796.0208740234375,"bottom":489.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":506.3333435058594,"width":742,"height":50,"top":506.3333435058594,"right":1117.6666870117188,"bottom":556.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":531,"width":16,"height":22,"top":531,"right":556.8541870117188,"bottom":553,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":531.5416870117188,"width":16,"height":16,"top":531.5416870117188,"right":556.8541870117188,"bottom":547.5416870117188,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":565,"width":729.3333740234375,"height":22,"top":565,"right":1079.0000610351562,"bottom":587,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-35.json b/demonstrations/ieckqwf/bboxes/bboxes-35.json new file mode 100644 index 0000000000000000000000000000000000000000..0f361e3d18daa6c19b9221b7bfd07cf51c692ee3 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-35.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-420.66668701171875,"width":220,"height":2310.125,"top":-420.66668701171875,"right":220,"bottom":1889.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-420.66668701171875,"width":1043.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-359.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-359.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2085.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1749.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2053.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1717.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-79.66667175292969,"width":768,"height":1595.125,"top":-79.66667175292969,"right":1117.6666870117188,"bottom":1515.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-47,"width":768,"height":634,"top":-47,"right":1117.6666870117188,"bottom":587,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":572,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":556.3333330154419,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":-15.666666984558105,"width":742,"height":50,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":34.333333015441895,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":9,"width":16,"height":22,"top":9,"right":726.6979370117188,"bottom":31,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":9.541666984558105,"width":16,"height":16,"top":9.541666984558105,"right":726.6979370117188,"bottom":25.541666984558105,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":42.333335876464844,"width":742,"height":50,"top":42.333335876464844,"right":1117.6666870117188,"bottom":92.33333587646484,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":67,"width":16,"height":22,"top":67,"right":723.3541870117188,"bottom":89,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":67.54167175292969,"width":16,"height":16,"top":67.54167175292969,"right":723.3541870117188,"bottom":83.54167175292969,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":100.33333587646484,"width":742,"height":50,"top":100.33333587646484,"right":1117.6666870117188,"bottom":150.33333587646484,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":125,"width":16,"height":22,"top":125,"right":477.6875,"bottom":147,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":125.54167175292969,"width":16,"height":16,"top":125.54167175292969,"right":477.6875,"bottom":141.5416717529297,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":158.33334350585938,"width":742,"height":50,"top":158.33334350585938,"right":1117.6666870117188,"bottom":208.33334350585938,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":183,"width":16,"height":22,"top":183,"right":618.15625,"bottom":205,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":183.5416717529297,"width":16,"height":16,"top":183.5416717529297,"right":618.15625,"bottom":199.5416717529297,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":216.33334350585938,"width":742,"height":26,"top":216.33334350585938,"right":1117.6666870117188,"bottom":242.33334350585938,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":217,"width":700.5208740234375,"height":22,"top":217,"right":1082.1875610351562,"bottom":239,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":217,"width":498.8645935058594,"height":22,"top":217,"right":1058.8229675292969,"bottom":239,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":217,"width":16,"height":22,"top":217,"right":1078.822998046875,"bottom":239,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":217.5416717529297,"width":16,"height":16,"top":217.5416717529297,"right":1078.822998046875,"bottom":233.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":250.33334350585938,"width":742,"height":50,"top":250.33334350585938,"right":1117.6666870117188,"bottom":300.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":275,"width":16,"height":22,"top":275,"right":836.7916870117188,"bottom":297,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":275.54168701171875,"width":16,"height":16,"top":275.54168701171875,"right":836.7916870117188,"bottom":291.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":308.3333435058594,"width":742,"height":74,"top":308.3333435058594,"right":1117.6666870117188,"bottom":382.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":70,"top":309,"right":1117.0313110351562,"bottom":379,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":46,"top":309,"right":1117.0313110351562,"bottom":355,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":357,"width":16,"height":22,"top":357,"right":401.66668701171875,"bottom":379,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":357.54168701171875,"width":16,"height":16,"top":357.54168701171875,"right":401.66668701171875,"bottom":373.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":390.3333435058594,"width":742,"height":50,"top":390.3333435058594,"right":1117.6666870117188,"bottom":440.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":415,"width":16,"height":22,"top":415,"right":477.6875,"bottom":437,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":415.54168701171875,"width":16,"height":16,"top":415.54168701171875,"right":477.6875,"bottom":431.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":448.3333435058594,"width":742,"height":50,"top":448.3333435058594,"right":1117.6666870117188,"bottom":498.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":473,"width":16,"height":22,"top":473,"right":796.0208740234375,"bottom":495,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":473.54168701171875,"width":16,"height":16,"top":473.54168701171875,"right":796.0208740234375,"bottom":489.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":506.3333435058594,"width":742,"height":50,"top":506.3333435058594,"right":1117.6666870117188,"bottom":556.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":531,"width":16,"height":22,"top":531,"right":556.8541870117188,"bottom":553,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":531.5416870117188,"width":16,"height":16,"top":531.5416870117188,"right":556.8541870117188,"bottom":547.5416870117188,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":565,"width":729.3333740234375,"height":22,"top":565,"right":1079.0000610351562,"bottom":587,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-37.json b/demonstrations/ieckqwf/bboxes/bboxes-37.json new file mode 100644 index 0000000000000000000000000000000000000000..0f361e3d18daa6c19b9221b7bfd07cf51c692ee3 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-37.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-420.66668701171875,"width":1263.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-420.66668701171875,"width":220,"height":2310.125,"top":-420.66668701171875,"right":220,"bottom":1889.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-420.66668701171875,"width":1043.3333740234375,"height":2310.125,"top":-420.66668701171875,"right":1263.3333740234375,"bottom":1889.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-412.66668701171875,"width":1027.3333740234375,"height":2286.125,"top":-412.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-359.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-359.66668701171875,"right":1247.3333740234375,"bottom":1873.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2085.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1749.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2069.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1733.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-335.66668701171875,"width":768,"height":2053.125,"top":-335.66668701171875,"right":1117.6666870117188,"bottom":1717.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-79.66667175292969,"width":768,"height":1595.125,"top":-79.66667175292969,"right":1117.6666870117188,"bottom":1515.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-47.66666793823242,"width":768,"height":1523.125,"top":-47.66666793823242,"right":1117.6666870117188,"bottom":1475.4583320617676,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-47,"width":768,"height":634,"top":-47,"right":1117.6666870117188,"bottom":587,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-15.666666984558105,"width":768,"height":572,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":556.3333330154419,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":-15.666666984558105,"width":742,"height":50,"top":-15.666666984558105,"right":1117.6666870117188,"bottom":34.333333015441895,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":-15,"width":283.57293701171875,"height":22,"top":-15,"right":665.2396240234375,"bottom":7,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":-15,"width":708.4896240234375,"height":46,"top":-15,"right":1090.1563110351562,"bottom":31,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":9,"width":23.36458396911621,"height":22,"top":9,"right":730.062520980835,"bottom":31,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":9,"width":16,"height":22,"top":9,"right":726.6979370117188,"bottom":31,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":5.5416669845581055,"width":16,"height":24,"top":5.5416669845581055,"right":726.6979370117188,"bottom":29.541666984558105,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":9.541666984558105,"width":16,"height":16,"top":9.541666984558105,"right":726.6979370117188,"bottom":25.541666984558105,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":42.333335876464844,"width":742,"height":50,"top":42.333335876464844,"right":1117.6666870117188,"bottom":92.33333587646484,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":43,"width":289.28125,"height":22,"top":43,"right":670.9479370117188,"bottom":65,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":43,"width":728.6979370117188,"height":46,"top":43,"right":1110.3646240234375,"bottom":89,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":67,"width":23.36458396911621,"height":22,"top":67,"right":726.718770980835,"bottom":89,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":67,"width":16,"height":22,"top":67,"right":723.3541870117188,"bottom":89,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":63.54166793823242,"width":16,"height":24,"top":63.54166793823242,"right":723.3541870117188,"bottom":87.54166793823242,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":67.54167175292969,"width":16,"height":16,"top":67.54167175292969,"right":723.3541870117188,"bottom":83.54167175292969,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":100.33333587646484,"width":742,"height":50,"top":100.33333587646484,"right":1117.6666870117188,"bottom":150.33333587646484,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":101,"width":173.875,"height":22,"top":101,"right":555.5416870117188,"bottom":123,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":101,"width":659.8125,"height":46,"top":101,"right":1041.4791870117188,"bottom":147,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":125,"width":23.36458396911621,"height":22,"top":125,"right":481.0520839691162,"bottom":147,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":125,"width":16,"height":22,"top":125,"right":477.6875,"bottom":147,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":121.54167175292969,"width":16,"height":24,"top":121.54167175292969,"right":477.6875,"bottom":145.5416717529297,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":125.54167175292969,"width":16,"height":16,"top":125.54167175292969,"right":477.6875,"bottom":141.5416717529297,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":158.33334350585938,"width":742,"height":50,"top":158.33334350585938,"right":1117.6666870117188,"bottom":208.33334350585938,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":159,"width":193.30209350585938,"height":22,"top":159,"right":574.9687805175781,"bottom":181,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":159,"width":659.625,"height":46,"top":159,"right":1041.2916870117188,"bottom":205,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":183,"width":23.36458396911621,"height":22,"top":183,"right":621.5208339691162,"bottom":205,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":183,"width":16,"height":22,"top":183,"right":618.15625,"bottom":205,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":179.5416717529297,"width":16,"height":24,"top":179.5416717529297,"right":618.15625,"bottom":203.5416717529297,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":183.5416717529297,"width":16,"height":16,"top":183.5416717529297,"right":618.15625,"bottom":199.5416717529297,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":216.33334350585938,"width":742,"height":26,"top":216.33334350585938,"right":1117.6666870117188,"bottom":242.33334350585938,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":217,"width":700.5208740234375,"height":22,"top":217,"right":1082.1875610351562,"bottom":239,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":217,"width":178.2916717529297,"height":22,"top":217,"right":559.9583587646484,"bottom":239,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":217,"width":498.8645935058594,"height":22,"top":217,"right":1058.8229675292969,"bottom":239,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":217,"width":23.36458396911621,"height":22,"top":217,"right":1082.1875820159912,"bottom":239,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":217,"width":16,"height":22,"top":217,"right":1078.822998046875,"bottom":239,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":213.5416717529297,"width":16,"height":24,"top":213.5416717529297,"right":1078.822998046875,"bottom":237.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":217.5416717529297,"width":16,"height":16,"top":217.5416717529297,"right":1078.822998046875,"bottom":233.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":250.33334350585938,"width":742,"height":50,"top":250.33334350585938,"right":1117.6666870117188,"bottom":300.3333435058594,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":251,"width":441.9583435058594,"height":22,"top":251,"right":823.6250305175781,"bottom":273,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":251,"width":730.4479370117188,"height":46,"top":251,"right":1112.1146240234375,"bottom":297,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":275,"width":23.36458396911621,"height":22,"top":275,"right":840.156270980835,"bottom":297,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":275,"width":16,"height":22,"top":275,"right":836.7916870117188,"bottom":297,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":271.54168701171875,"width":16,"height":24,"top":271.54168701171875,"right":836.7916870117188,"bottom":295.54168701171875,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":275.54168701171875,"width":16,"height":16,"top":275.54168701171875,"right":836.7916870117188,"bottom":291.54168701171875,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":308.3333435058594,"width":742,"height":74,"top":308.3333435058594,"right":1117.6666870117188,"bottom":382.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":70,"top":309,"right":1117.0313110351562,"bottom":379,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":309,"width":257.3020935058594,"height":22,"top":309,"right":638.9687805175781,"bottom":331,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":309,"width":735.3646240234375,"height":46,"top":309,"right":1117.0313110351562,"bottom":355,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":357,"width":23.36458396911621,"height":22,"top":357,"right":405.03127098083496,"bottom":379,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":357,"width":16,"height":22,"top":357,"right":401.66668701171875,"bottom":379,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":353.54168701171875,"width":16,"height":24,"top":353.54168701171875,"right":401.66668701171875,"bottom":377.54168701171875,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":357.54168701171875,"width":16,"height":16,"top":357.54168701171875,"right":401.66668701171875,"bottom":373.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":390.3333435058594,"width":742,"height":50,"top":390.3333435058594,"right":1117.6666870117188,"bottom":440.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":391,"width":172.7291717529297,"height":22,"top":391,"right":554.3958587646484,"bottom":413,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":391,"width":688.1146240234375,"height":46,"top":391,"right":1069.7813110351562,"bottom":437,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":415,"width":23.36458396911621,"height":22,"top":415,"right":481.0520839691162,"bottom":437,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":415,"width":16,"height":22,"top":415,"right":477.6875,"bottom":437,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":411.54168701171875,"width":16,"height":24,"top":411.54168701171875,"right":477.6875,"bottom":435.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":415.54168701171875,"width":16,"height":16,"top":415.54168701171875,"right":477.6875,"bottom":431.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":448.3333435058594,"width":742,"height":50,"top":448.3333435058594,"right":1117.6666870117188,"bottom":498.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":449,"width":176.14584350585938,"height":22,"top":449,"right":557.8125305175781,"bottom":471,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":449,"width":689.21875,"height":46,"top":449,"right":1070.8854370117188,"bottom":495,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":473,"width":23.36458396911621,"height":22,"top":473,"right":799.3854579925537,"bottom":495,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":473,"width":16,"height":22,"top":473,"right":796.0208740234375,"bottom":495,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":469.54168701171875,"width":16,"height":24,"top":469.54168701171875,"right":796.0208740234375,"bottom":493.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":473.54168701171875,"width":16,"height":16,"top":473.54168701171875,"right":796.0208740234375,"bottom":489.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":506.3333435058594,"width":742,"height":50,"top":506.3333435058594,"right":1117.6666870117188,"bottom":556.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":507,"width":103.14583587646484,"height":22,"top":507,"right":484.8125228881836,"bottom":529,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":507,"width":709.0729370117188,"height":46,"top":507,"right":1090.7396240234375,"bottom":553,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":531,"width":23.36458396911621,"height":22,"top":531,"right":560.218770980835,"bottom":553,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":531,"width":16,"height":22,"top":531,"right":556.8541870117188,"bottom":553,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":527.5416870117188,"width":16,"height":24,"top":527.5416870117188,"right":556.8541870117188,"bottom":551.5416870117188,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":531.5416870117188,"width":16,"height":16,"top":531.5416870117188,"right":556.8541870117188,"bottom":547.5416870117188,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":565,"width":729.3333740234375,"height":22,"top":565,"right":1079.0000610351562,"bottom":587,"left":349.66668701171875},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-42.json b/demonstrations/ieckqwf/bboxes/bboxes-42.json new file mode 100644 index 0000000000000000000000000000000000000000..49e40cfba76ce1716cba14e36fc44ebf3ec5e718 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-42.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-520.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-520.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-520.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-520.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-520.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-520.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-520.6666870117188,"width":220,"height":2310.125,"top":-520.6666870117188,"right":220,"bottom":1789.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-520.6666870117188,"width":1043.3333740234375,"height":2310.125,"top":-520.6666870117188,"right":1263.3333740234375,"bottom":1789.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-512.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-512.6666870117188,"right":1247.3333740234375,"bottom":1773.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-512.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-512.6666870117188,"right":1247.3333740234375,"bottom":1773.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-512.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-512.6666870117188,"right":1247.3333740234375,"bottom":1773.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-459.66668701171875,"width":1027.3333740234375,"height":2233.125,"top":-459.66668701171875,"right":1247.3333740234375,"bottom":1773.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-435.66668701171875,"width":768,"height":2085.125,"top":-435.66668701171875,"right":1117.6666870117188,"bottom":1649.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-435.66668701171875,"width":768,"height":2069.125,"top":-435.66668701171875,"right":1117.6666870117188,"bottom":1633.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-435.66668701171875,"width":768,"height":2069.125,"top":-435.66668701171875,"right":1117.6666870117188,"bottom":1633.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-435.66668701171875,"width":768,"height":2069.125,"top":-435.66668701171875,"right":1117.6666870117188,"bottom":1633.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-435.66668701171875,"width":768,"height":2053.125,"top":-435.66668701171875,"right":1117.6666870117188,"bottom":1617.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-179.6666717529297,"width":768,"height":1595.125,"top":-179.6666717529297,"right":1117.6666870117188,"bottom":1415.4583282470703,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-147.6666717529297,"width":768,"height":1523.125,"top":-147.6666717529297,"right":1117.6666870117188,"bottom":1375.4583282470703,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-147.6666717529297,"width":768,"height":1523.125,"top":-147.6666717529297,"right":1117.6666870117188,"bottom":1375.4583282470703,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-147.6666717529297,"width":768,"height":1523.125,"top":-147.6666717529297,"right":1117.6666870117188,"bottom":1375.4583282470703,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-147,"width":768,"height":634,"top":-147,"right":1117.6666870117188,"bottom":487,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-115.66667175292969,"width":768,"height":572,"top":-115.66667175292969,"right":1117.6666870117188,"bottom":456.3333282470703,"left":349.66668701171875},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":0.3333333432674408,"width":742,"height":50,"top":0.3333333432674408,"right":1117.6666870117188,"bottom":50.33333334326744,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":1,"width":659.8125,"height":46,"top":1,"right":1041.4791870117188,"bottom":47,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":1,"width":173.875,"height":22,"top":1,"right":555.5416870117188,"bottom":23,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":1,"width":173.875,"height":22,"top":1,"right":555.5416870117188,"bottom":23,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":1,"width":659.8125,"height":46,"top":1,"right":1041.4791870117188,"bottom":47,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":25,"width":23.36458396911621,"height":22,"top":25,"right":481.0520839691162,"bottom":47,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":25,"width":23.36458396911621,"height":22,"top":25,"right":481.0520839691162,"bottom":47,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":25,"width":16,"height":22,"top":25,"right":477.6875,"bottom":47,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":21.541667938232422,"width":16,"height":24,"top":21.541667938232422,"right":477.6875,"bottom":45.54166793823242,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":21.541667938232422,"width":16,"height":24,"top":21.541667938232422,"right":477.6875,"bottom":45.54166793823242,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":25.541667938232422,"width":16,"height":16,"top":25.541667938232422,"right":477.6875,"bottom":41.54166793823242,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":58.333335876464844,"width":742,"height":50,"top":58.333335876464844,"right":1117.6666870117188,"bottom":108.33333587646484,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":59,"width":659.625,"height":46,"top":59,"right":1041.2916870117188,"bottom":105,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":59,"width":193.30209350585938,"height":22,"top":59,"right":574.9687805175781,"bottom":81,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":59,"width":193.30209350585938,"height":22,"top":59,"right":574.9687805175781,"bottom":81,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":59,"width":659.625,"height":46,"top":59,"right":1041.2916870117188,"bottom":105,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":83,"width":23.36458396911621,"height":22,"top":83,"right":621.5208339691162,"bottom":105,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":83,"width":23.36458396911621,"height":22,"top":83,"right":621.5208339691162,"bottom":105,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":83,"width":16,"height":22,"top":83,"right":618.15625,"bottom":105,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":79.54167175292969,"width":16,"height":24,"top":79.54167175292969,"right":618.15625,"bottom":103.54167175292969,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":79.54167175292969,"width":16,"height":24,"top":79.54167175292969,"right":618.15625,"bottom":103.54167175292969,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":83.54167175292969,"width":16,"height":16,"top":83.54167175292969,"right":618.15625,"bottom":99.54167175292969,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":116.33333587646484,"width":742,"height":26,"top":116.33333587646484,"right":1117.6666870117188,"bottom":142.33333587646484,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":117,"width":700.5208740234375,"height":22,"top":117,"right":1082.1875610351562,"bottom":139,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":117,"width":178.2916717529297,"height":22,"top":117,"right":559.9583587646484,"bottom":139,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":117,"width":178.2916717529297,"height":22,"top":117,"right":559.9583587646484,"bottom":139,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":117,"width":498.8645935058594,"height":22,"top":117,"right":1058.8229675292969,"bottom":139,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":117,"width":23.36458396911621,"height":22,"top":117,"right":1082.1875820159912,"bottom":139,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":117,"width":23.36458396911621,"height":22,"top":117,"right":1082.1875820159912,"bottom":139,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":117,"width":16,"height":22,"top":117,"right":1078.822998046875,"bottom":139,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":113.54167175292969,"width":16,"height":24,"top":113.54167175292969,"right":1078.822998046875,"bottom":137.5416717529297,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":113.54167175292969,"width":16,"height":24,"top":113.54167175292969,"right":1078.822998046875,"bottom":137.5416717529297,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":117.54167175292969,"width":16,"height":16,"top":117.54167175292969,"right":1078.822998046875,"bottom":133.5416717529297,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":150.33334350585938,"width":742,"height":50,"top":150.33334350585938,"right":1117.6666870117188,"bottom":200.33334350585938,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":151,"width":730.4479370117188,"height":46,"top":151,"right":1112.1146240234375,"bottom":197,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":151,"width":441.9583435058594,"height":22,"top":151,"right":823.6250305175781,"bottom":173,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":151,"width":441.9583435058594,"height":22,"top":151,"right":823.6250305175781,"bottom":173,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":151,"width":730.4479370117188,"height":46,"top":151,"right":1112.1146240234375,"bottom":197,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":175,"width":23.36458396911621,"height":22,"top":175,"right":840.156270980835,"bottom":197,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":175,"width":23.36458396911621,"height":22,"top":175,"right":840.156270980835,"bottom":197,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":175,"width":16,"height":22,"top":175,"right":836.7916870117188,"bottom":197,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":171.5416717529297,"width":16,"height":24,"top":171.5416717529297,"right":836.7916870117188,"bottom":195.5416717529297,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":171.5416717529297,"width":16,"height":24,"top":171.5416717529297,"right":836.7916870117188,"bottom":195.5416717529297,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":175.5416717529297,"width":16,"height":16,"top":175.5416717529297,"right":836.7916870117188,"bottom":191.5416717529297,"left":820.7916870117188},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":208.33334350585938,"width":742,"height":74,"top":208.33334350585938,"right":1117.6666870117188,"bottom":282.3333435058594,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":209,"width":735.3646240234375,"height":70,"top":209,"right":1117.0313110351562,"bottom":279,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":209,"width":257.3020935058594,"height":22,"top":209,"right":638.9687805175781,"bottom":231,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":209,"width":257.3020935058594,"height":22,"top":209,"right":638.9687805175781,"bottom":231,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":209,"width":735.3646240234375,"height":46,"top":209,"right":1117.0313110351562,"bottom":255,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":257,"width":23.36458396911621,"height":22,"top":257,"right":405.03127098083496,"bottom":279,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":257,"width":23.36458396911621,"height":22,"top":257,"right":405.03127098083496,"bottom":279,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":257,"width":16,"height":22,"top":257,"right":401.66668701171875,"bottom":279,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":253.5416717529297,"width":16,"height":24,"top":253.5416717529297,"right":401.66668701171875,"bottom":277.5416717529297,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":253.5416717529297,"width":16,"height":24,"top":253.5416717529297,"right":401.66668701171875,"bottom":277.5416717529297,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":257.54168701171875,"width":16,"height":16,"top":257.54168701171875,"right":401.66668701171875,"bottom":273.54168701171875,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":290.3333435058594,"width":742,"height":50,"top":290.3333435058594,"right":1117.6666870117188,"bottom":340.3333435058594,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":291,"width":688.1146240234375,"height":46,"top":291,"right":1069.7813110351562,"bottom":337,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":291,"width":172.7291717529297,"height":22,"top":291,"right":554.3958587646484,"bottom":313,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":291,"width":172.7291717529297,"height":22,"top":291,"right":554.3958587646484,"bottom":313,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":291,"width":688.1146240234375,"height":46,"top":291,"right":1069.7813110351562,"bottom":337,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":315,"width":23.36458396911621,"height":22,"top":315,"right":481.0520839691162,"bottom":337,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":315,"width":23.36458396911621,"height":22,"top":315,"right":481.0520839691162,"bottom":337,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":315,"width":16,"height":22,"top":315,"right":477.6875,"bottom":337,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":311.54168701171875,"width":16,"height":24,"top":311.54168701171875,"right":477.6875,"bottom":335.54168701171875,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":311.54168701171875,"width":16,"height":24,"top":311.54168701171875,"right":477.6875,"bottom":335.54168701171875,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":315.54168701171875,"width":16,"height":16,"top":315.54168701171875,"right":477.6875,"bottom":331.54168701171875,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":348.3333435058594,"width":742,"height":50,"top":348.3333435058594,"right":1117.6666870117188,"bottom":398.3333435058594,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":349,"width":689.21875,"height":46,"top":349,"right":1070.8854370117188,"bottom":395,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":349,"width":176.14584350585938,"height":22,"top":349,"right":557.8125305175781,"bottom":371,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":349,"width":176.14584350585938,"height":22,"top":349,"right":557.8125305175781,"bottom":371,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":349,"width":689.21875,"height":46,"top":349,"right":1070.8854370117188,"bottom":395,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":373,"width":23.36458396911621,"height":22,"top":373,"right":799.3854579925537,"bottom":395,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":373,"width":23.36458396911621,"height":22,"top":373,"right":799.3854579925537,"bottom":395,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":373,"width":16,"height":22,"top":373,"right":796.0208740234375,"bottom":395,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":369.54168701171875,"width":16,"height":24,"top":369.54168701171875,"right":796.0208740234375,"bottom":393.54168701171875,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":369.54168701171875,"width":16,"height":24,"top":369.54168701171875,"right":796.0208740234375,"bottom":393.54168701171875,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":373.54168701171875,"width":16,"height":16,"top":373.54168701171875,"right":796.0208740234375,"bottom":389.54168701171875,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":406.3333435058594,"width":742,"height":50,"top":406.3333435058594,"right":1117.6666870117188,"bottom":456.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":407,"width":709.0729370117188,"height":46,"top":407,"right":1090.7396240234375,"bottom":453,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":407,"width":103.14583587646484,"height":22,"top":407,"right":484.8125228881836,"bottom":429,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":407,"width":103.14583587646484,"height":22,"top":407,"right":484.8125228881836,"bottom":429,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":407,"width":709.0729370117188,"height":46,"top":407,"right":1090.7396240234375,"bottom":453,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":431,"width":23.36458396911621,"height":22,"top":431,"right":560.218770980835,"bottom":453,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":431,"width":23.36458396911621,"height":22,"top":431,"right":560.218770980835,"bottom":453,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":431,"width":16,"height":22,"top":431,"right":556.8541870117188,"bottom":453,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":427.54168701171875,"width":16,"height":24,"top":427.54168701171875,"right":556.8541870117188,"bottom":451.54168701171875,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":427.54168701171875,"width":16,"height":24,"top":427.54168701171875,"right":556.8541870117188,"bottom":451.54168701171875,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":431.54168701171875,"width":16,"height":16,"top":431.54168701171875,"right":556.8541870117188,"bottom":447.54168701171875,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":465,"width":729.3333740234375,"height":22,"top":465,"right":1079.0000610351562,"bottom":487,"left":349.66668701171875},"b17cbd73-1346-4cd3":{"x":349.66668701171875,"y":504.3333435058594,"width":768,"height":871.125,"top":504.3333435058594,"right":1117.6666870117188,"bottom":1375.4583435058594,"left":349.66668701171875},"6fc7583c-68c2-4c67":{"x":349.66668701171875,"y":504.3333435058594,"width":380,"height":253.33334350585938,"top":504.3333435058594,"right":729.6666870117188,"bottom":757.6666870117188,"left":349.66668701171875},"8fdc3dc8-45f0-406d":{"x":737.6666870117188,"y":504.3333435058594,"width":380,"height":380,"top":504.3333435058594,"right":1117.6666870117188,"bottom":884.3333435058594,"left":737.6666870117188},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-44.json b/demonstrations/ieckqwf/bboxes/bboxes-44.json new file mode 100644 index 0000000000000000000000000000000000000000..d95552f38537672fa071da8dfd092d40e3d13802 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-44.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-720.6666870117188,"width":220,"height":2310.125,"top":-720.6666870117188,"right":220,"bottom":1589.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-720.6666870117188,"width":1043.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-712.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-712.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-712.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-712.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-712.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-712.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-659.6666870117188,"width":1027.3333740234375,"height":2233.125,"top":-659.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2085.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1449.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2069.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1433.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2069.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1433.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2069.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1433.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2053.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1417.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-379.66668701171875,"width":768,"height":1595.125,"top":-379.66668701171875,"right":1117.6666870117188,"bottom":1215.4583129882812,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-347.66668701171875,"width":768,"height":1523.125,"top":-347.66668701171875,"right":1117.6666870117188,"bottom":1175.4583129882812,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-347.66668701171875,"width":768,"height":1523.125,"top":-347.66668701171875,"right":1117.6666870117188,"bottom":1175.4583129882812,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-347.66668701171875,"width":768,"height":1523.125,"top":-347.66668701171875,"right":1117.6666870117188,"bottom":1175.4583129882812,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-347,"width":768,"height":634,"top":-347,"right":1117.6666870117188,"bottom":287,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-315.66668701171875,"width":768,"height":572,"top":-315.66668701171875,"right":1117.6666870117188,"bottom":256.33331298828125,"left":349.66668701171875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":-49.66666793823242,"width":742,"height":50,"top":-49.66666793823242,"right":1117.6666870117188,"bottom":0.3333320617675781,"left":375.66668701171875},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":8.333333969116211,"width":742,"height":74,"top":8.333333969116211,"right":1117.6666870117188,"bottom":82.33333396911621,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":9,"width":735.3646240234375,"height":70,"top":9,"right":1117.0313110351562,"bottom":79,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":9,"width":257.3020935058594,"height":22,"top":9,"right":638.9687805175781,"bottom":31,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":9,"width":257.3020935058594,"height":22,"top":9,"right":638.9687805175781,"bottom":31,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":9,"width":735.3646240234375,"height":46,"top":9,"right":1117.0313110351562,"bottom":55,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":57,"width":23.36458396911621,"height":22,"top":57,"right":405.03127098083496,"bottom":79,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":57,"width":23.36458396911621,"height":22,"top":57,"right":405.03127098083496,"bottom":79,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":57,"width":16,"height":22,"top":57,"right":401.66668701171875,"bottom":79,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":53.54166793823242,"width":16,"height":24,"top":53.54166793823242,"right":401.66668701171875,"bottom":77.54166793823242,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":53.54166793823242,"width":16,"height":24,"top":53.54166793823242,"right":401.66668701171875,"bottom":77.54166793823242,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":57.54166793823242,"width":16,"height":16,"top":57.54166793823242,"right":401.66668701171875,"bottom":73.54166793823242,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":90.33333587646484,"width":742,"height":50,"top":90.33333587646484,"right":1117.6666870117188,"bottom":140.33333587646484,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":91,"width":688.1146240234375,"height":46,"top":91,"right":1069.7813110351562,"bottom":137,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":91,"width":172.7291717529297,"height":22,"top":91,"right":554.3958587646484,"bottom":113,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":91,"width":172.7291717529297,"height":22,"top":91,"right":554.3958587646484,"bottom":113,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":91,"width":688.1146240234375,"height":46,"top":91,"right":1069.7813110351562,"bottom":137,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":115,"width":23.36458396911621,"height":22,"top":115,"right":481.0520839691162,"bottom":137,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":115,"width":23.36458396911621,"height":22,"top":115,"right":481.0520839691162,"bottom":137,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":115,"width":16,"height":22,"top":115,"right":477.6875,"bottom":137,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":111.54167175292969,"width":16,"height":24,"top":111.54167175292969,"right":477.6875,"bottom":135.5416717529297,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":111.54167175292969,"width":16,"height":24,"top":111.54167175292969,"right":477.6875,"bottom":135.5416717529297,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":115.54167175292969,"width":16,"height":16,"top":115.54167175292969,"right":477.6875,"bottom":131.5416717529297,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":148.33334350585938,"width":742,"height":50,"top":148.33334350585938,"right":1117.6666870117188,"bottom":198.33334350585938,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":149,"width":689.21875,"height":46,"top":149,"right":1070.8854370117188,"bottom":195,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":149,"width":176.14584350585938,"height":22,"top":149,"right":557.8125305175781,"bottom":171,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":149,"width":176.14584350585938,"height":22,"top":149,"right":557.8125305175781,"bottom":171,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":149,"width":689.21875,"height":46,"top":149,"right":1070.8854370117188,"bottom":195,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":173,"width":23.36458396911621,"height":22,"top":173,"right":799.3854579925537,"bottom":195,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":173,"width":23.36458396911621,"height":22,"top":173,"right":799.3854579925537,"bottom":195,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":173,"width":16,"height":22,"top":173,"right":796.0208740234375,"bottom":195,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":169.5416717529297,"width":16,"height":24,"top":169.5416717529297,"right":796.0208740234375,"bottom":193.5416717529297,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":169.5416717529297,"width":16,"height":24,"top":169.5416717529297,"right":796.0208740234375,"bottom":193.5416717529297,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":173.5416717529297,"width":16,"height":16,"top":173.5416717529297,"right":796.0208740234375,"bottom":189.5416717529297,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":206.33334350585938,"width":742,"height":50,"top":206.33334350585938,"right":1117.6666870117188,"bottom":256.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":207,"width":709.0729370117188,"height":46,"top":207,"right":1090.7396240234375,"bottom":253,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":207,"width":103.14583587646484,"height":22,"top":207,"right":484.8125228881836,"bottom":229,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":207,"width":103.14583587646484,"height":22,"top":207,"right":484.8125228881836,"bottom":229,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":207,"width":709.0729370117188,"height":46,"top":207,"right":1090.7396240234375,"bottom":253,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":231,"width":23.36458396911621,"height":22,"top":231,"right":560.218770980835,"bottom":253,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":231,"width":23.36458396911621,"height":22,"top":231,"right":560.218770980835,"bottom":253,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":231,"width":16,"height":22,"top":231,"right":556.8541870117188,"bottom":253,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":227.5416717529297,"width":16,"height":24,"top":227.5416717529297,"right":556.8541870117188,"bottom":251.5416717529297,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":227.5416717529297,"width":16,"height":24,"top":227.5416717529297,"right":556.8541870117188,"bottom":251.5416717529297,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":231.5416717529297,"width":16,"height":16,"top":231.5416717529297,"right":556.8541870117188,"bottom":247.5416717529297,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":265,"width":729.3333740234375,"height":22,"top":265,"right":1079.0000610351562,"bottom":287,"left":349.66668701171875},"b17cbd73-1346-4cd3":{"x":349.66668701171875,"y":304.3333435058594,"width":768,"height":871.125,"top":304.3333435058594,"right":1117.6666870117188,"bottom":1175.4583435058594,"left":349.66668701171875},"6fc7583c-68c2-4c67":{"x":349.66668701171875,"y":304.3333435058594,"width":380,"height":253.33334350585938,"top":304.3333435058594,"right":729.6666870117188,"bottom":557.6666870117188,"left":349.66668701171875},"f432101d-a660-45f3":{"x":349.66668701171875,"y":565.6666870117188,"width":360.79168701171875,"height":541.1979370117188,"top":565.6666870117188,"right":710.4583740234375,"bottom":1106.8646240234375,"left":349.66668701171875},"8fdc3dc8-45f0-406d":{"x":737.6666870117188,"y":304.3333435058594,"width":380,"height":380,"top":304.3333435058594,"right":1117.6666870117188,"bottom":684.3333435058594,"left":737.6666870117188},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-45.json b/demonstrations/ieckqwf/bboxes/bboxes-45.json new file mode 100644 index 0000000000000000000000000000000000000000..d95552f38537672fa071da8dfd092d40e3d13802 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-45.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"5a04f383-796a-4127":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-720.6666870117188,"width":1263.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-720.6666870117188,"width":220,"height":2310.125,"top":-720.6666870117188,"right":220,"bottom":1589.4583129882812,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-720.6666870117188,"width":1043.3333740234375,"height":2310.125,"top":-720.6666870117188,"right":1263.3333740234375,"bottom":1589.4583129882812,"left":220},"99a62f96-6364-402f":{"x":220,"y":-712.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-712.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-712.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-712.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"196f9843-9577-4c93":{"x":220,"y":-712.6666870117188,"width":1027.3333740234375,"height":2286.125,"top":-712.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-659.6666870117188,"width":1027.3333740234375,"height":2233.125,"top":-659.6666870117188,"right":1247.3333740234375,"bottom":1573.4583129882812,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2085.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1449.4583129882812,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2069.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1433.4583129882812,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2069.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1433.4583129882812,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2069.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1433.4583129882812,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-635.6666870117188,"width":768,"height":2053.125,"top":-635.6666870117188,"right":1117.6666870117188,"bottom":1417.4583129882812,"left":349.66668701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":-379.66668701171875,"width":768,"height":1595.125,"top":-379.66668701171875,"right":1117.6666870117188,"bottom":1215.4583129882812,"left":349.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":-347.66668701171875,"width":768,"height":1523.125,"top":-347.66668701171875,"right":1117.6666870117188,"bottom":1175.4583129882812,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":-347.66668701171875,"width":768,"height":1523.125,"top":-347.66668701171875,"right":1117.6666870117188,"bottom":1175.4583129882812,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":-347.66668701171875,"width":768,"height":1523.125,"top":-347.66668701171875,"right":1117.6666870117188,"bottom":1175.4583129882812,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":-347,"width":768,"height":634,"top":-347,"right":1117.6666870117188,"bottom":287,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":-315.66668701171875,"width":768,"height":572,"top":-315.66668701171875,"right":1117.6666870117188,"bottom":256.33331298828125,"left":349.66668701171875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":-49.66666793823242,"width":742,"height":50,"top":-49.66666793823242,"right":1117.6666870117188,"bottom":0.3333320617675781,"left":375.66668701171875},"c0d66170-7079-4f23":{"x":375.66668701171875,"y":8.333333969116211,"width":742,"height":74,"top":8.333333969116211,"right":1117.6666870117188,"bottom":82.33333396911621,"left":375.66668701171875},"f4cd1166-1ed7-4f4c":{"x":381.66668701171875,"y":9,"width":735.3646240234375,"height":70,"top":9,"right":1117.0313110351562,"bottom":79,"left":381.66668701171875},"7ea6e7e4-3b61-4e18":{"x":381.66668701171875,"y":9,"width":257.3020935058594,"height":22,"top":9,"right":638.9687805175781,"bottom":31,"left":381.66668701171875},"225694be-9fb5-4421":{"x":381.66668701171875,"y":9,"width":257.3020935058594,"height":22,"top":9,"right":638.9687805175781,"bottom":31,"left":381.66668701171875},"8e45cc94-1950-4a9c":{"x":381.66668701171875,"y":9,"width":735.3646240234375,"height":46,"top":9,"right":1117.0313110351562,"bottom":55,"left":381.66668701171875},"e8f6cbd2-1544-4545":{"x":381.66668701171875,"y":57,"width":23.36458396911621,"height":22,"top":57,"right":405.03127098083496,"bottom":79,"left":381.66668701171875},"f190d90a-a1d5-4cfc":{"x":381.66668701171875,"y":57,"width":23.36458396911621,"height":22,"top":57,"right":405.03127098083496,"bottom":79,"left":381.66668701171875},"4194bb90-118e-4a5a":{"x":385.66668701171875,"y":57,"width":16,"height":22,"top":57,"right":401.66668701171875,"bottom":79,"left":385.66668701171875},"2619d1c2-adf6-4682":{"x":385.66668701171875,"y":53.54166793823242,"width":16,"height":24,"top":53.54166793823242,"right":401.66668701171875,"bottom":77.54166793823242,"left":385.66668701171875},"5cc907b3-5010-4eca":{"x":385.66668701171875,"y":53.54166793823242,"width":16,"height":24,"top":53.54166793823242,"right":401.66668701171875,"bottom":77.54166793823242,"left":385.66668701171875},"e5a23b4c-50a9-4b65":{"x":385.66668701171875,"y":57.54166793823242,"width":16,"height":16,"top":57.54166793823242,"right":401.66668701171875,"bottom":73.54166793823242,"left":385.66668701171875},"32d1272f-1b84-4172":{"x":375.66668701171875,"y":90.33333587646484,"width":742,"height":50,"top":90.33333587646484,"right":1117.6666870117188,"bottom":140.33333587646484,"left":375.66668701171875},"370de633-6605-43ef":{"x":381.66668701171875,"y":91,"width":688.1146240234375,"height":46,"top":91,"right":1069.7813110351562,"bottom":137,"left":381.66668701171875},"a308bf34-a183-4858":{"x":381.66668701171875,"y":91,"width":172.7291717529297,"height":22,"top":91,"right":554.3958587646484,"bottom":113,"left":381.66668701171875},"2e73e85b-ea9c-44a7":{"x":381.66668701171875,"y":91,"width":172.7291717529297,"height":22,"top":91,"right":554.3958587646484,"bottom":113,"left":381.66668701171875},"eb7212c5-24af-4055":{"x":381.66668701171875,"y":91,"width":688.1146240234375,"height":46,"top":91,"right":1069.7813110351562,"bottom":137,"left":381.66668701171875},"147b6219-5edd-48bb":{"x":457.6875,"y":115,"width":23.36458396911621,"height":22,"top":115,"right":481.0520839691162,"bottom":137,"left":457.6875},"116d5fe3-1a03-475a":{"x":457.6875,"y":115,"width":23.36458396911621,"height":22,"top":115,"right":481.0520839691162,"bottom":137,"left":457.6875},"0cb8fea0-59b9-471d":{"x":461.6875,"y":115,"width":16,"height":22,"top":115,"right":477.6875,"bottom":137,"left":461.6875},"0c549d5d-7194-4927":{"x":461.6875,"y":111.54167175292969,"width":16,"height":24,"top":111.54167175292969,"right":477.6875,"bottom":135.5416717529297,"left":461.6875},"c223124f-5e5a-4068":{"x":461.6875,"y":111.54167175292969,"width":16,"height":24,"top":111.54167175292969,"right":477.6875,"bottom":135.5416717529297,"left":461.6875},"c44ad642-bf7f-4c9d":{"x":461.6875,"y":115.54167175292969,"width":16,"height":16,"top":115.54167175292969,"right":477.6875,"bottom":131.5416717529297,"left":461.6875},"734532c1-0a36-4a49":{"x":375.66668701171875,"y":148.33334350585938,"width":742,"height":50,"top":148.33334350585938,"right":1117.6666870117188,"bottom":198.33334350585938,"left":375.66668701171875},"64e90a4a-ac01-4595":{"x":381.66668701171875,"y":149,"width":689.21875,"height":46,"top":149,"right":1070.8854370117188,"bottom":195,"left":381.66668701171875},"e95e6237-5174-4bbc":{"x":381.66668701171875,"y":149,"width":176.14584350585938,"height":22,"top":149,"right":557.8125305175781,"bottom":171,"left":381.66668701171875},"c3e0f0b2-c02f-437d":{"x":381.66668701171875,"y":149,"width":176.14584350585938,"height":22,"top":149,"right":557.8125305175781,"bottom":171,"left":381.66668701171875},"9b033c7c-beab-40e3":{"x":381.66668701171875,"y":149,"width":689.21875,"height":46,"top":149,"right":1070.8854370117188,"bottom":195,"left":381.66668701171875},"7b69e0ef-cd41-4e44":{"x":776.0208740234375,"y":173,"width":23.36458396911621,"height":22,"top":173,"right":799.3854579925537,"bottom":195,"left":776.0208740234375},"af274418-9d9a-4391":{"x":776.0208740234375,"y":173,"width":23.36458396911621,"height":22,"top":173,"right":799.3854579925537,"bottom":195,"left":776.0208740234375},"f135bd82-7322-4bee":{"x":780.0208740234375,"y":173,"width":16,"height":22,"top":173,"right":796.0208740234375,"bottom":195,"left":780.0208740234375},"4a344f00-0347-467c":{"x":780.0208740234375,"y":169.5416717529297,"width":16,"height":24,"top":169.5416717529297,"right":796.0208740234375,"bottom":193.5416717529297,"left":780.0208740234375},"ad704739-a984-489c":{"x":780.0208740234375,"y":169.5416717529297,"width":16,"height":24,"top":169.5416717529297,"right":796.0208740234375,"bottom":193.5416717529297,"left":780.0208740234375},"7572012a-e89a-4b59":{"x":780.0208740234375,"y":173.5416717529297,"width":16,"height":16,"top":173.5416717529297,"right":796.0208740234375,"bottom":189.5416717529297,"left":780.0208740234375},"ac64a644-c138-496d":{"x":375.66668701171875,"y":206.33334350585938,"width":742,"height":50,"top":206.33334350585938,"right":1117.6666870117188,"bottom":256.3333435058594,"left":375.66668701171875},"b65ceba9-26f7-4f38":{"x":381.66668701171875,"y":207,"width":709.0729370117188,"height":46,"top":207,"right":1090.7396240234375,"bottom":253,"left":381.66668701171875},"932b021b-6a97-422f":{"x":381.66668701171875,"y":207,"width":103.14583587646484,"height":22,"top":207,"right":484.8125228881836,"bottom":229,"left":381.66668701171875},"6e344c53-ab99-4a3e":{"x":381.66668701171875,"y":207,"width":103.14583587646484,"height":22,"top":207,"right":484.8125228881836,"bottom":229,"left":381.66668701171875},"c13f4f01-082c-42dc":{"x":381.66668701171875,"y":207,"width":709.0729370117188,"height":46,"top":207,"right":1090.7396240234375,"bottom":253,"left":381.66668701171875},"0c7f39b2-d7f0-4d06":{"x":536.8541870117188,"y":231,"width":23.36458396911621,"height":22,"top":231,"right":560.218770980835,"bottom":253,"left":536.8541870117188},"bf9d23cb-ffe8-42a8":{"x":536.8541870117188,"y":231,"width":23.36458396911621,"height":22,"top":231,"right":560.218770980835,"bottom":253,"left":536.8541870117188},"0c5d0d86-9405-414a":{"x":540.8541870117188,"y":231,"width":16,"height":22,"top":231,"right":556.8541870117188,"bottom":253,"left":540.8541870117188},"4b0a7571-d1a1-4b2f":{"x":540.8541870117188,"y":227.5416717529297,"width":16,"height":24,"top":227.5416717529297,"right":556.8541870117188,"bottom":251.5416717529297,"left":540.8541870117188},"bd6ae1fd-313a-4fd2":{"x":540.8541870117188,"y":227.5416717529297,"width":16,"height":24,"top":227.5416717529297,"right":556.8541870117188,"bottom":251.5416717529297,"left":540.8541870117188},"1befafbc-1ff1-44fa":{"x":540.8541870117188,"y":231.5416717529297,"width":16,"height":16,"top":231.5416717529297,"right":556.8541870117188,"bottom":247.5416717529297,"left":540.8541870117188},"5bd00d6e-090c-4d5d":{"x":349.66668701171875,"y":265,"width":729.3333740234375,"height":22,"top":265,"right":1079.0000610351562,"bottom":287,"left":349.66668701171875},"b17cbd73-1346-4cd3":{"x":349.66668701171875,"y":304.3333435058594,"width":768,"height":871.125,"top":304.3333435058594,"right":1117.6666870117188,"bottom":1175.4583435058594,"left":349.66668701171875},"6fc7583c-68c2-4c67":{"x":349.66668701171875,"y":304.3333435058594,"width":380,"height":253.33334350585938,"top":304.3333435058594,"right":729.6666870117188,"bottom":557.6666870117188,"left":349.66668701171875},"f432101d-a660-45f3":{"x":349.66668701171875,"y":565.6666870117188,"width":360.79168701171875,"height":541.1979370117188,"top":565.6666870117188,"right":710.4583740234375,"bottom":1106.8646240234375,"left":349.66668701171875},"8fdc3dc8-45f0-406d":{"x":737.6666870117188,"y":304.3333435058594,"width":380,"height":380,"top":304.3333435058594,"right":1117.6666870117188,"bottom":684.3333435058594,"left":737.6666870117188},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-7.json b/demonstrations/ieckqwf/bboxes/bboxes-7.json new file mode 100644 index 0000000000000000000000000000000000000000..b0fff89155acc25f30dc27f55e616c91d52068a2 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-7.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"5a04f383-796a-4127":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-120.66667175292969,"width":220,"height":2310.125,"top":-120.66667175292969,"right":220,"bottom":2189.4583282470703,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-120.66667175292969,"width":1043.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":220},"99a62f96-6364-402f":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"196f9843-9577-4c93":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-59.66666793823242,"width":1027.3333740234375,"height":2233.125,"top":-59.66666793823242,"right":1247.3333740234375,"bottom":2173.4583320617676,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2085.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2049.4583320617676,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2053.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2017.4583320617676,"left":349.66668701171875},"5df3a481-a910-4a30":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"323c736f-d631-435a":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"03ad161a-44a1-4905":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"9c7be7cc-0dd0-4522":{"x":349.66668701171875,"y":44.333335876464844,"width":768,"height":152,"top":44.333335876464844,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"ac182ce0-1577-439c":{"x":349.66668701171875,"y":44.333335876464844,"width":768,"height":24,"top":44.333335876464844,"right":1117.6666870117188,"bottom":68.33333587646484,"left":349.66668701171875},"8558afe9-c0d2-411e":{"x":349.66668701171875,"y":44.333335876464844,"width":128.34375,"height":24,"top":44.333335876464844,"right":478.01043701171875,"bottom":68.33333587646484,"left":349.66668701171875},"06f9f96c-ff49-420a":{"x":349.66668701171875,"y":48.333335876464844,"width":14,"height":16,"top":48.333335876464844,"right":363.66668701171875,"bottom":64.33333587646484,"left":349.66668701171875},"d8b27842-14d9-45a7":{"x":350.16668701171875,"y":48.333335876464844,"width":13,"height":16,"top":48.333335876464844,"right":363.16668701171875,"bottom":64.33333587646484,"left":350.16668701171875},"bcf43bb7-33c1-4fc1":{"x":371.66668701171875,"y":44.333335876464844,"width":106.34375,"height":24,"top":44.333335876464844,"right":478.01043701171875,"bottom":68.33333587646484,"left":371.66668701171875},"fe7b0910-2cc5-4f44":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"370e6816-b4f3-441e":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"5fde6a21-a20f-4c16":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"a73f94e4-2be1-468e":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"a296e17a-3fbf-4fbe":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"40223ff2-ec67-44bb":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"45a2b5e0-6e0f-4609":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"ec685cad-2276-4dfe":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":527.6666870117188,"bottom":132.33333587646484,"left":357.66668701171875},"b46f8877-710e-4581":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":527.6666870117188,"bottom":108.33333587646484,"left":357.66668701171875},"c3a6512d-dbb1-404e":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":527.6666870117188,"bottom":108.33333587646484,"left":357.66668701171875},"56bb96c0-9d6f-439e":{"x":357.66668701171875,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":527.6666870117188,"bottom":132.33333587646484,"left":357.66668701171875},"caac51c4-cf29-4be9":{"x":357.66668701171875,"y":112.33333587646484,"width":97.83333587646484,"height":16,"top":112.33333587646484,"right":455.5000228881836,"bottom":128.33333587646484,"left":357.66668701171875},"ed315a3b-3fbb-4535":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"12a3f3bd-35fd-48e4":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"ef7e2444-275e-41cb":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"1a80d0e3-e2e4-4443":{"x":377.66668701171875,"y":112.33333587646484,"width":77.83333587646484,"height":16,"top":112.33333587646484,"right":455.5000228881836,"bottom":128.33333587646484,"left":377.66668701171875},"a48a9f2d-2e92-431a":{"x":459.5,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":463.40625,"bottom":132.33333587646484,"left":459.5},"127e909d-96b9-4103":{"x":467.40625,"y":112.33333587646484,"width":4.208333492279053,"height":16,"top":112.33333587646484,"right":471.61458349227905,"bottom":128.33333587646484,"left":467.40625},"fec27fa8-aef4-42a9":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"a917b887-1bea-4203":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"d62b89c4-22f1-4177":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"9fdafbad-19d2-4ad2":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":721.6666870117188,"bottom":132.33333587646484,"left":551.6666870117188},"676aea97-b445-4e7e":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":721.6666870117188,"bottom":108.33333587646484,"left":551.6666870117188},"afb00160-bf5d-4cee":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":721.6666870117188,"bottom":108.33333587646484,"left":551.6666870117188},"0bda2a5c-95d2-426f":{"x":551.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":721.6666870117188,"bottom":132.33333587646484,"left":551.6666870117188},"fefe87b1-9278-4e85":{"x":551.6666870117188,"y":112.33333587646484,"width":121.27083587646484,"height":16,"top":112.33333587646484,"right":672.9375228881836,"bottom":128.33333587646484,"left":551.6666870117188},"2bca0f26-f911-4e14":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"62996fea-cc04-4c37":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"d0f59419-2518-4654":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"5e70e550-40d9-4557":{"x":571.6666870117188,"y":112.33333587646484,"width":101.27083587646484,"height":16,"top":112.33333587646484,"right":672.9375228881836,"bottom":128.33333587646484,"left":571.6666870117188},"c6588d87-4279-4789":{"x":676.9375,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":680.84375,"bottom":132.33333587646484,"left":676.9375},"08f2aedb-ea0b-42ce":{"x":684.84375,"y":112.33333587646484,"width":6.927083492279053,"height":16,"top":112.33333587646484,"right":691.770833492279,"bottom":128.33333587646484,"left":684.84375},"781a4dea-b71f-4339":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"9ab0924f-002a-4131":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"41332a3e-8183-42b7":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"fb5bd943-9d4b-498b":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":915.6666870117188,"bottom":132.33333587646484,"left":745.6666870117188},"91c48008-66f6-4822":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":915.6666870117188,"bottom":108.33333587646484,"left":745.6666870117188},"7fc3a830-7aea-4b6b":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":915.6666870117188,"bottom":108.33333587646484,"left":745.6666870117188},"c69d470c-b20e-43c0":{"x":745.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":915.6666870117188,"bottom":132.33333587646484,"left":745.6666870117188},"89a25add-4f94-4257":{"x":745.6666870117188,"y":112.33333587646484,"width":137.3125,"height":16,"top":112.33333587646484,"right":882.9791870117188,"bottom":128.33333587646484,"left":745.6666870117188},"95219df4-5558-4819":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"5683a5bd-85e2-4b20":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"4b8a4caa-fa92-4797":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"2c56cac0-24b7-4552":{"x":765.6666870117188,"y":112.33333587646484,"width":117.3125,"height":16,"top":112.33333587646484,"right":882.9791870117188,"bottom":128.33333587646484,"left":765.6666870117188},"4ddbc830-f8c6-4938":{"x":886.9791870117188,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":890.8854370117188,"bottom":132.33333587646484,"left":886.9791870117188},"35380cbf-159b-4c1f":{"x":894.8854370117188,"y":112.33333587646484,"width":7.1354169845581055,"height":16,"top":112.33333587646484,"right":902.0208539962769,"bottom":128.33333587646484,"left":894.8854370117188},"3cf6dcc3-2dca-4390":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"bf09bc69-cf90-4c54":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"f7f10518-f6a2-40ab":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"773ad79f-ae38-49d6":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":1109.6666870117188,"bottom":132.33333587646484,"left":939.6666870117188},"c289791c-7f08-4dd6":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":1109.6666870117188,"bottom":108.33333587646484,"left":939.6666870117188},"44b18b34-feac-4e3a":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":1109.6666870117188,"bottom":108.33333587646484,"left":939.6666870117188},"846721d4-3cf2-428c":{"x":939.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":1109.6666870117188,"bottom":132.33333587646484,"left":939.6666870117188},"20a09b68-f784-477e":{"x":939.6666870117188,"y":112.33333587646484,"width":66.79167175292969,"height":16,"top":112.33333587646484,"right":1006.4583587646484,"bottom":128.33333587646484,"left":939.6666870117188},"43cca39e-0022-4fc0":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"892f29c6-6401-4700":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"1fef1718-b08f-4905":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"9e4f1485-534c-4283":{"x":959.6666870117188,"y":112.33333587646484,"width":46.79166793823242,"height":16,"top":112.33333587646484,"right":1006.4583549499512,"bottom":128.33333587646484,"left":959.6666870117188},"b5b4164a-f4c1-45d4":{"x":1010.4583740234375,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":1014.3646240234375,"bottom":132.33333587646484,"left":1010.4583740234375},"5a6b1ec7-5ede-4c66":{"x":1018.3646240234375,"y":112.33333587646484,"width":7.770833492279053,"height":16,"top":112.33333587646484,"right":1026.1354575157166,"bottom":128.33333587646484,"left":1018.3646240234375},"5456479d-7e77-4ec9":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"039eefbc-512d-4f3b":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"64bd20ee-4420-43c3":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"1db606b7-036d-431d":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":40,"top":152.33334350585938,"right":527.6666870117188,"bottom":192.33334350585938,"left":357.66668701171875},"30f04103-6371-48f2":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":16,"top":152.33334350585938,"right":527.6666870117188,"bottom":168.33334350585938,"left":357.66668701171875},"bb8889c9-609c-456b":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":16,"top":152.33334350585938,"right":527.6666870117188,"bottom":168.33334350585938,"left":357.66668701171875},"32542a4a-51b0-4ad2":{"x":357.66668701171875,"y":168.33334350585938,"width":170,"height":24,"top":168.33334350585938,"right":527.6666870117188,"bottom":192.33334350585938,"left":357.66668701171875},"af0080d4-ffa5-4cb9":{"x":357.66668701171875,"y":172.33334350585938,"width":105.0625,"height":16,"top":172.33334350585938,"right":462.72918701171875,"bottom":188.33334350585938,"left":357.66668701171875},"4181bffb-648b-4373":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"116e6b00-d660-4879":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"d454e062-474a-4f3d":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"208023bb-e533-4054":{"x":377.66668701171875,"y":172.33334350585938,"width":85.0625,"height":16,"top":172.33334350585938,"right":462.72918701171875,"bottom":188.33334350585938,"left":377.66668701171875},"5999ad85-9f25-4c7e":{"x":466.72918701171875,"y":168.33334350585938,"width":3.90625,"height":24,"top":168.33334350585938,"right":470.63543701171875,"bottom":192.33334350585938,"left":466.72918701171875},"d6d5cffd-7197-40c6":{"x":474.63543701171875,"y":172.33334350585938,"width":7.677083492279053,"height":16,"top":172.33334350585938,"right":482.3125205039978,"bottom":188.33334350585938,"left":474.63543701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":1595.125,"top":220.33334350585938,"right":1117.6666870117188,"bottom":1815.4583435058594,"left":349.66668701171875},"9b1f0199-999b-4b05":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":32,"top":220.33334350585938,"right":1117.6666870117188,"bottom":252.33334350585938,"left":349.66668701171875},"4bac0e14-1da6-4aa6":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":24,"top":220.33334350585938,"right":1117.6666870117188,"bottom":244.33334350585938,"left":349.66668701171875},"262690b6-c5ce-4cce":{"x":349.66668701171875,"y":220.33334350585938,"width":87.30208587646484,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":349.66668701171875},"5d65b1cc-92a6-4e49":{"x":349.66668701171875,"y":220.33334350585938,"width":87.30208587646484,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":349.66668701171875},"3d35c129-9293-4201":{"x":349.66668701171875,"y":220.33334350585938,"width":20,"height":24,"top":220.33334350585938,"right":369.66668701171875,"bottom":244.33334350585938,"left":349.66668701171875},"41d62912-c7c8-421a":{"x":349.66668701171875,"y":223.6666717529297,"width":20,"height":16,"top":223.6666717529297,"right":369.66668701171875,"bottom":239.6666717529297,"left":349.66668701171875},"d05a1854-6f39-424d":{"x":352.66668701171875,"y":224.6666717529297,"width":14,"height":14,"top":224.6666717529297,"right":366.66668701171875,"bottom":238.6666717529297,"left":352.66668701171875},"411509c0-5b02-4dd4":{"x":377.66668701171875,"y":220.33334350585938,"width":59.302085876464844,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":377.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":253,"width":768,"height":634,"top":253,"right":1117.6666870117188,"bottom":887,"left":349.66668701171875},"60e543e9-3c49-4101":{"x":349.66668701171875,"y":253,"width":514.625,"height":22,"top":253,"right":864.2916870117188,"bottom":275,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":284.3333435058594,"width":768,"height":572,"top":284.3333435058594,"right":1117.6666870117188,"bottom":856.3333435058594,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":284.3333435058594,"width":742,"height":50,"top":284.3333435058594,"right":1117.6666870117188,"bottom":334.3333435058594,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":285,"width":708.4896240234375,"height":46,"top":285,"right":1090.1563110351562,"bottom":331,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":285,"width":283.57293701171875,"height":22,"top":285,"right":665.2396240234375,"bottom":307,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":285,"width":283.57293701171875,"height":22,"top":285,"right":665.2396240234375,"bottom":307,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":285,"width":708.4896240234375,"height":46,"top":285,"right":1090.1563110351562,"bottom":331,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":309,"width":23.36458396911621,"height":22,"top":309,"right":730.062520980835,"bottom":331,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":309,"width":23.36458396911621,"height":22,"top":309,"right":730.062520980835,"bottom":331,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":309,"width":16,"height":22,"top":309,"right":726.6979370117188,"bottom":331,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":305.54168701171875,"width":16,"height":24,"top":305.54168701171875,"right":726.6979370117188,"bottom":329.54168701171875,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":305.54168701171875,"width":16,"height":24,"top":305.54168701171875,"right":726.6979370117188,"bottom":329.54168701171875,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":309.54168701171875,"width":16,"height":16,"top":309.54168701171875,"right":726.6979370117188,"bottom":325.54168701171875,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":342.3333435058594,"width":742,"height":50,"top":342.3333435058594,"right":1117.6666870117188,"bottom":392.3333435058594,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":343,"width":728.6979370117188,"height":46,"top":343,"right":1110.3646240234375,"bottom":389,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":343,"width":289.28125,"height":22,"top":343,"right":670.9479370117188,"bottom":365,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":343,"width":289.28125,"height":22,"top":343,"right":670.9479370117188,"bottom":365,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":343,"width":728.6979370117188,"height":46,"top":343,"right":1110.3646240234375,"bottom":389,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":367,"width":23.36458396911621,"height":22,"top":367,"right":726.718770980835,"bottom":389,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":367,"width":23.36458396911621,"height":22,"top":367,"right":726.718770980835,"bottom":389,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":367,"width":16,"height":22,"top":367,"right":723.3541870117188,"bottom":389,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":363.54168701171875,"width":16,"height":24,"top":363.54168701171875,"right":723.3541870117188,"bottom":387.54168701171875,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":363.54168701171875,"width":16,"height":24,"top":363.54168701171875,"right":723.3541870117188,"bottom":387.54168701171875,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":367.54168701171875,"width":16,"height":16,"top":367.54168701171875,"right":723.3541870117188,"bottom":383.54168701171875,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":400.3333435058594,"width":742,"height":50,"top":400.3333435058594,"right":1117.6666870117188,"bottom":450.3333435058594,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":401,"width":659.8125,"height":46,"top":401,"right":1041.4791870117188,"bottom":447,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":401,"width":173.875,"height":22,"top":401,"right":555.5416870117188,"bottom":423,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":401,"width":173.875,"height":22,"top":401,"right":555.5416870117188,"bottom":423,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":401,"width":659.8125,"height":46,"top":401,"right":1041.4791870117188,"bottom":447,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":425,"width":23.36458396911621,"height":22,"top":425,"right":481.0520839691162,"bottom":447,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":425,"width":23.36458396911621,"height":22,"top":425,"right":481.0520839691162,"bottom":447,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":425,"width":16,"height":22,"top":425,"right":477.6875,"bottom":447,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":421.54168701171875,"width":16,"height":24,"top":421.54168701171875,"right":477.6875,"bottom":445.54168701171875,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":421.54168701171875,"width":16,"height":24,"top":421.54168701171875,"right":477.6875,"bottom":445.54168701171875,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":425.54168701171875,"width":16,"height":16,"top":425.54168701171875,"right":477.6875,"bottom":441.54168701171875,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":458.3333435058594,"width":742,"height":50,"top":458.3333435058594,"right":1117.6666870117188,"bottom":508.3333435058594,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":459,"width":659.625,"height":46,"top":459,"right":1041.2916870117188,"bottom":505,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":459,"width":193.30209350585938,"height":22,"top":459,"right":574.9687805175781,"bottom":481,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":459,"width":193.30209350585938,"height":22,"top":459,"right":574.9687805175781,"bottom":481,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":459,"width":659.625,"height":46,"top":459,"right":1041.2916870117188,"bottom":505,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":483,"width":23.36458396911621,"height":22,"top":483,"right":621.5208339691162,"bottom":505,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":483,"width":23.36458396911621,"height":22,"top":483,"right":621.5208339691162,"bottom":505,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":483,"width":16,"height":22,"top":483,"right":618.15625,"bottom":505,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":479.54168701171875,"width":16,"height":24,"top":479.54168701171875,"right":618.15625,"bottom":503.54168701171875,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":479.54168701171875,"width":16,"height":24,"top":479.54168701171875,"right":618.15625,"bottom":503.54168701171875,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":483.54168701171875,"width":16,"height":16,"top":483.54168701171875,"right":618.15625,"bottom":499.54168701171875,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":516.3333740234375,"width":742,"height":26,"top":516.3333740234375,"right":1117.6666870117188,"bottom":542.3333740234375,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":517,"width":700.5208740234375,"height":22,"top":517,"right":1082.1875610351562,"bottom":539,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":517,"width":178.2916717529297,"height":22,"top":517,"right":559.9583587646484,"bottom":539,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":517,"width":178.2916717529297,"height":22,"top":517,"right":559.9583587646484,"bottom":539,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":517,"width":498.8645935058594,"height":22,"top":517,"right":1058.8229675292969,"bottom":539,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":517,"width":23.36458396911621,"height":22,"top":517,"right":1082.1875820159912,"bottom":539,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":517,"width":23.36458396911621,"height":22,"top":517,"right":1082.1875820159912,"bottom":539,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":517,"width":16,"height":22,"top":517,"right":1078.822998046875,"bottom":539,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":513.5416870117188,"width":16,"height":24,"top":513.5416870117188,"right":1078.822998046875,"bottom":537.5416870117188,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":513.5416870117188,"width":16,"height":24,"top":513.5416870117188,"right":1078.822998046875,"bottom":537.5416870117188,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":517.5416870117188,"width":16,"height":16,"top":517.5416870117188,"right":1078.822998046875,"bottom":533.5416870117188,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":550.3333740234375,"width":742,"height":50,"top":550.3333740234375,"right":1117.6666870117188,"bottom":600.3333740234375,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":551,"width":730.4479370117188,"height":46,"top":551,"right":1112.1146240234375,"bottom":597,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":551,"width":441.9583435058594,"height":22,"top":551,"right":823.6250305175781,"bottom":573,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":551,"width":441.9583435058594,"height":22,"top":551,"right":823.6250305175781,"bottom":573,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":551,"width":730.4479370117188,"height":46,"top":551,"right":1112.1146240234375,"bottom":597,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":575,"width":23.36458396911621,"height":22,"top":575,"right":840.156270980835,"bottom":597,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":575,"width":23.36458396911621,"height":22,"top":575,"right":840.156270980835,"bottom":597,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":575,"width":16,"height":22,"top":575,"right":836.7916870117188,"bottom":597,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":571.5416870117188,"width":16,"height":24,"top":571.5416870117188,"right":836.7916870117188,"bottom":595.5416870117188,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":571.5416870117188,"width":16,"height":24,"top":571.5416870117188,"right":836.7916870117188,"bottom":595.5416870117188,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":575.5416870117188,"width":16,"height":16,"top":575.5416870117188,"right":836.7916870117188,"bottom":591.5416870117188,"left":820.7916870117188},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/bboxes/bboxes-9.json b/demonstrations/ieckqwf/bboxes/bboxes-9.json new file mode 100644 index 0000000000000000000000000000000000000000..b0fff89155acc25f30dc27f55e616c91d52068a2 --- /dev/null +++ b/demonstrations/ieckqwf/bboxes/bboxes-9.json @@ -0,0 +1 @@ +{"7ce6c112-36cd-4cad":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"ff27f266-dc2e-4151":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"ddbf4ca9-ff11-49fd":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"391f09cb-5e0a-4e5d":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"5a04f383-796a-4127":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"996d6026-4ca0-47d3":{"x":0,"y":-120.66667175292969,"width":1263.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":0},"af0a8880-ad2e-472e":{"x":0,"y":-120.66667175292969,"width":220,"height":2310.125,"top":-120.66667175292969,"right":220,"bottom":2189.4583282470703,"left":0},"88e8b01b-41f2-4c04":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"c74194a8-4f3b-4d9e":{"x":0,"y":0,"width":220,"height":601.3333740234375,"top":0,"right":220,"bottom":601.3333740234375,"left":0},"037acfc1-735d-4416":{"x":0,"y":16,"width":220,"height":352.66668701171875,"top":16,"right":220,"bottom":368.66668701171875,"left":0},"70dd8b20-52e5-4471":{"x":0,"y":16,"width":220,"height":24,"top":16,"right":220,"bottom":40,"left":0},"07ad311f-84fd-4083":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"363b8839-6c9e-4311":{"x":0,"y":16,"width":172.59375,"height":24,"top":16,"right":172.59375,"bottom":40,"left":0},"273b3cf4-d185-4f9c":{"x":24,"y":16,"width":140.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":24},"85c3c4ac-f5e1-45fe":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"485bff6c-71bc-45d2":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"5d905c1c-3feb-46f9":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"1e010617-c7a5-4b09":{"x":24,"y":16,"width":24,"height":24,"top":16,"right":48,"bottom":40,"left":24},"d6b50cad-c9db-4061":{"x":29.3203125,"y":21.3203125,"width":13.37847900390625,"height":13.359375,"top":21.3203125,"right":42.69879150390625,"bottom":34.6796875,"left":29.3203125},"98559116-7ffa-42ae":{"x":34.48059844970703,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":37.538536071777344,"bottom":29.519407272338867,"left":34.48059844970703},"781f99a4-37e6-49ed":{"x":34.48059844970703,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":37.538536071777344,"bottom":34.6796875,"left":34.48059844970703},"eb67453d-003a-4925":{"x":34.48059844970703,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":37.538536071777344,"bottom":24.378250122070312,"left":34.48059844970703},"fc947796-58cf-4064":{"x":29.3203125,"y":26.461469650268555,"width":3.0579376220703125,"height":3.0579376220703125,"top":26.461469650268555,"right":32.37825012207031,"bottom":29.519407272338867,"left":29.3203125},"f2bbe1b5-fa2b-4a1a":{"x":29.3203125,"y":31.621749877929688,"width":3.0579376220703125,"height":3.0579376220703125,"top":31.621749877929688,"right":32.37825012207031,"bottom":34.6796875,"left":29.3203125},"e174c16a-f30a-464c":{"x":29.3203125,"y":21.3203125,"width":3.0579376220703125,"height":3.0579376220703125,"top":21.3203125,"right":32.37825012207031,"bottom":24.378250122070312,"left":29.3203125},"b73dc5c9-a1c4-425a":{"x":39.64085388183594,"y":26.461469650268555,"width":3.0579402446746826,"height":3.0579376220703125,"top":26.461469650268555,"right":42.69879412651062,"bottom":29.519407272338867,"left":39.64085388183594},"01a76176-e6ac-4a65":{"x":39.64085388183594,"y":31.621749877929688,"width":3.0579402446746826,"height":3.0579376220703125,"top":31.621749877929688,"right":42.69879412651062,"bottom":34.6796875,"left":39.64085388183594},"955d49ba-418d-4785":{"x":39.64085388183594,"y":21.3203125,"width":3.0579402446746826,"height":3.0579376220703125,"top":21.3203125,"right":42.69879412651062,"bottom":24.378250122070312,"left":39.64085388183594},"7d44eabd-3872-49d2":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"44544999-c82e-4380":{"x":56,"y":16,"width":108.59375,"height":24,"top":16,"right":164.59375,"bottom":40,"left":56},"17ec846e-d70c-4e39":{"x":0,"y":64,"width":220,"height":39.333335876464844,"top":64,"right":220,"bottom":103.33333587646484,"left":0},"c7ec3b2b-6921-41ff":{"x":0,"y":66,"width":220,"height":37.333335876464844,"top":66,"right":220,"bottom":103.33333587646484,"left":0},"2bcca082-6e74-485f":{"x":24,"y":66,"width":172,"height":37.333335876464844,"top":66,"right":196,"bottom":103.33333587646484,"left":24},"0f76cf94-c0ba-497b":{"x":40.66666793823242,"y":74.66667175292969,"width":83.90625,"height":20,"top":74.66667175292969,"right":124.57291793823242,"bottom":94.66667175292969,"left":40.66666793823242},"f4aae869-e399-41e3":{"x":134.4791717529297,"y":74.66667175292969,"width":52.85416793823242,"height":20,"top":74.66667175292969,"right":187.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"4cffa24d-ddb1-475b":{"x":134.4791717529297,"y":74.66667175292969,"width":30.854167938232422,"height":20,"top":74.66667175292969,"right":165.3333396911621,"bottom":94.66667175292969,"left":134.4791717529297},"fd642430-0eab-4fc7":{"x":167.33334350585938,"y":74.66667175292969,"width":20,"height":20,"top":74.66667175292969,"right":187.33334350585938,"bottom":94.66667175292969,"left":167.33334350585938},"609d0ff9-865e-4a70":{"x":0,"y":119.33333587646484,"width":220,"height":184,"top":119.33333587646484,"right":220,"bottom":303.33333587646484,"left":0},"dca1a8d4-dbec-4033":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"6dbb2102-0400-4a3a":{"x":0,"y":119.33333587646484,"width":220,"height":40,"top":119.33333587646484,"right":220,"bottom":159.33333587646484,"left":0},"66a479f2-7478-4cd3":{"x":8,"y":119.33333587646484,"width":204,"height":40,"top":119.33333587646484,"right":212,"bottom":159.33333587646484,"left":8},"fcbbdce8-325e-4fb1":{"x":24,"y":131.33334350585938,"width":71.98958587646484,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":24},"fb79d6d7-c99c-4796":{"x":24,"y":131.33334350585938,"width":20,"height":16,"top":131.33334350585938,"right":44,"bottom":147.33334350585938,"left":24},"30953a4d-72f2-4804":{"x":25,"y":131.33334350585938,"width":18,"height":16,"top":131.33334350585938,"right":43,"bottom":147.33334350585938,"left":25},"0f26e889-69fa-4d88":{"x":48,"y":131.33334350585938,"width":47.989585876464844,"height":16,"top":131.33334350585938,"right":95.98958587646484,"bottom":147.33334350585938,"left":48},"fe9e82de-1de2-4fdb":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"8b8a58c1-a320-418a":{"x":0,"y":167.33334350585938,"width":220,"height":40,"top":167.33334350585938,"right":220,"bottom":207.33334350585938,"left":0},"7d06a2ac-b8e8-4cbb":{"x":8,"y":167.33334350585938,"width":204,"height":40,"top":167.33334350585938,"right":212,"bottom":207.33334350585938,"left":8},"b5c03e9f-955b-42fc":{"x":24,"y":179.33334350585938,"width":93.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":24},"2e5d73ba-14b5-43fd":{"x":24,"y":179.33334350585938,"width":20,"height":16,"top":179.33334350585938,"right":44,"bottom":195.33334350585938,"left":24},"c06eb8e5-5013-469c":{"x":26,"y":179.33334350585938,"width":16,"height":16,"top":179.33334350585938,"right":42,"bottom":195.33334350585938,"left":26},"8d529989-4bb0-42a8":{"x":48,"y":179.33334350585938,"width":69.15625,"height":16,"top":179.33334350585938,"right":117.15625,"bottom":195.33334350585938,"left":48},"04a6a87f-c546-4244":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"8f677685-65d3-4ce4":{"x":0,"y":215.33334350585938,"width":220,"height":40,"top":215.33334350585938,"right":220,"bottom":255.33334350585938,"left":0},"2d4471a3-e86d-40f1":{"x":8,"y":215.33334350585938,"width":204,"height":40,"top":215.33334350585938,"right":212,"bottom":255.33334350585938,"left":8},"2b145999-af7f-4d6b":{"x":24,"y":227.33334350585938,"width":117.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":24},"ba293bf4-fbce-49c8":{"x":24,"y":227.33334350585938,"width":20,"height":16,"top":227.33334350585938,"right":44,"bottom":243.33334350585938,"left":24},"aa421cb2-8d1b-4b12":{"x":25,"y":227.33334350585938,"width":18,"height":16,"top":227.33334350585938,"right":43,"bottom":243.33334350585938,"left":25},"feaebc43-b9ae-4507":{"x":48,"y":227.33334350585938,"width":93.25,"height":16,"top":227.33334350585938,"right":141.25,"bottom":243.33334350585938,"left":48},"8b5ab04f-8e77-4759":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"f5677759-44b1-4b8d":{"x":0,"y":263.3333435058594,"width":220,"height":40,"top":263.3333435058594,"right":220,"bottom":303.3333435058594,"left":0},"df7bc167-4731-4949":{"x":8,"y":263.3333435058594,"width":204,"height":40,"top":263.3333435058594,"right":212,"bottom":303.3333435058594,"left":8},"7dc4ffc4-461b-479a":{"x":24,"y":275.3333435058594,"width":93.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":24},"410cf753-380b-409b":{"x":24,"y":275.3333435058594,"width":20,"height":16,"top":275.3333435058594,"right":44,"bottom":291.3333435058594,"left":24},"e8471ca5-9b2e-41fd":{"x":26,"y":275.3333435058594,"width":15,"height":16,"top":275.3333435058594,"right":41,"bottom":291.3333435058594,"left":26},"517d0488-9b8c-4bcf":{"x":48,"y":275.3333435058594,"width":69.04167175292969,"height":16,"top":275.3333435058594,"right":117.04167175292969,"bottom":291.3333435058594,"left":48},"f287a34f-2ab5-42a3":{"x":0,"y":368.66668701171875,"width":220,"height":224.6666717529297,"top":368.66668701171875,"right":220,"bottom":593.3333587646484,"left":0},"36c6155e-33ec-4206":{"x":0,"y":368.66668701171875,"width":220,"height":108,"top":368.66668701171875,"right":220,"bottom":476.66668701171875,"left":0},"82dbb0b8-f945-4646":{"x":16,"y":368.66668701171875,"width":188,"height":24,"top":368.66668701171875,"right":204,"bottom":392.66668701171875,"left":16},"a5615a98-483d-4172":{"x":16,"y":371.3333435058594,"width":47.708335876464844,"height":19.33333396911621,"top":371.3333435058594,"right":63.708335876464844,"bottom":390.6666774749756,"left":16},"65824a19-eeb1-4814":{"x":16,"y":392.66668701171875,"width":188,"height":40,"top":392.66668701171875,"right":204,"bottom":432.66668701171875,"left":16},"72afbc79-73e0-4b8a":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"107dd14d-95a1-4d26":{"x":8,"y":436.66668701171875,"width":196,"height":32,"top":436.66668701171875,"right":204,"bottom":468.66668701171875,"left":8},"81e2f3c3-bdac-4883":{"x":8,"y":436.66668701171875,"width":93.75,"height":32,"top":436.66668701171875,"right":101.75,"bottom":468.66668701171875,"left":8},"9a1f25dd-6492-4b96":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"944d7fbc-75f9-48b5":{"x":16,"y":445.66668701171875,"width":77.75,"height":14,"top":445.66668701171875,"right":93.75,"bottom":459.66668701171875,"left":16},"877f7490-65a8-4c3f":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"7533b88f-9836-4637":{"x":0,"y":476.66668701171875,"width":220,"height":60,"top":476.66668701171875,"right":220,"bottom":536.6666870117188,"left":0},"ab76ccbe-7e21-4069":{"x":8,"y":484.66668701171875,"width":204,"height":44,"top":484.66668701171875,"right":212,"bottom":528.6666870117188,"left":8},"89f24d4d-1369-445d":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"871146b1-38a9-458e":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"b673d2d2-5c66-4299":{"x":16,"y":488.66668701171875,"width":36,"height":36,"top":488.66668701171875,"right":52,"bottom":524.6666870117188,"left":16},"7a7d59b2-2d19-405b":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"75a1808d-a9da-45a1":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"79f5a38b-828f-46a5":{"x":60,"y":496.66668701171875,"width":144,"height":20,"top":496.66668701171875,"right":204,"bottom":516.6666870117188,"left":60},"45c2f266-2ce1-429f":{"x":0,"y":544.6666870117188,"width":220,"height":40.66666793823242,"top":544.6666870117188,"right":220,"bottom":585.3333549499512,"left":0},"8d1e8f4b-23fd-4bdb":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"8f079f1d-0c10-425b":{"x":8,"y":553.3333740234375,"width":108.61458587646484,"height":32,"top":553.3333740234375,"right":116.61458587646484,"bottom":585.3333740234375,"left":8},"9906a892-7523-4974":{"x":16,"y":562.3333740234375,"width":92.61458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":16},"d95c6b78-2660-4427":{"x":16,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":33.5,"bottom":576.3333740234375,"left":16},"cbb09141-5b2d-4c2f":{"x":19.5,"y":562.3333740234375,"width":9.625,"height":14,"top":562.3333740234375,"right":29.125,"bottom":576.3333740234375,"left":19.5},"bdc60858-c6f6-4a30":{"x":37.5,"y":562.3333740234375,"width":71.11458587646484,"height":14,"top":562.3333740234375,"right":108.61458587646484,"bottom":576.3333740234375,"left":37.5},"12da51e3-4dae-48f9":{"x":120.61458587646484,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":152.61458587646484,"bottom":585.3333740234375,"left":120.61458587646484},"640434f3-ec49-4095":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"16beb941-aec5-47e5":{"x":127.86458587646484,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":145.36458587646484,"bottom":576.3333740234375,"left":127.86458587646484},"be80859b-ec7a-40d4":{"x":129.61459350585938,"y":563.6480712890625,"width":13.99994945526123,"height":11.370565414428711,"top":563.6480712890625,"right":143.6145429611206,"bottom":575.0186367034912,"left":129.61459350585938},"71eb3e93-56ed-4427":{"x":156.61459350585938,"y":553.3333740234375,"width":32,"height":32,"top":553.3333740234375,"right":188.61459350585938,"bottom":585.3333740234375,"left":156.61459350585938},"6af7dae7-33b1-4ecd":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"0662b221-0089-4f70":{"x":163.86459350585938,"y":562.3333740234375,"width":17.5,"height":14,"top":562.3333740234375,"right":181.36459350585938,"bottom":576.3333740234375,"left":163.86459350585938},"a94a51ab-b369-4d68":{"x":164.57553100585938,"y":563.2083740234375,"width":16.07806396484375,"height":12.249959945678711,"top":563.2083740234375,"right":180.65359497070312,"bottom":575.4583339691162,"left":164.57553100585938},"596dd1c5-50b7-4dab":{"x":220,"y":-120.66667175292969,"width":1043.3333740234375,"height":2310.125,"top":-120.66667175292969,"right":1263.3333740234375,"bottom":2189.4583282470703,"left":220},"99a62f96-6364-402f":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"2edf84d2-6e79-4ec2":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"196f9843-9577-4c93":{"x":220,"y":-112.66667175292969,"width":1027.3333740234375,"height":2286.125,"top":-112.66667175292969,"right":1247.3333740234375,"bottom":2173.4583282470703,"left":220},"0293ec9c-ad75-43fd":{"x":236,"y":0,"width":995.3333740234375,"height":53,"top":0,"right":1231.3333740234375,"bottom":53,"left":236},"a63dc173-70a9-49f9":{"x":236,"y":8,"width":995.3333740234375,"height":36,"top":8,"right":1231.3333740234375,"bottom":44,"left":236},"23d6f05c-5d63-45d8":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"179a06dd-504d-4b06":{"x":236,"y":16,"width":256.1770935058594,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":236},"0ac63989-0778-4fa9":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"741f42e6-f416-4dcc":{"x":236,"y":16,"width":194.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":236},"37a8138b-46cb-4d6a":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"0d401d8d-35bf-42b9":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"b5e3c7bf-3dc3-438c":{"x":236,"y":16,"width":20,"height":20,"top":16,"right":256,"bottom":36,"left":236},"165705fe-7dd8-419d":{"x":260,"y":16,"width":170.55209350585938,"height":20,"top":16,"right":430.5520935058594,"bottom":36,"left":260},"7be5960a-2b93-4606":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"98d3a4ea-7514-4162":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"76eee3ed-e0ef-405a":{"x":446.5520935058594,"y":16,"width":45.625,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":446.5520935058594},"02278f83-3033-4d80":{"x":446.5520935058594,"y":16,"width":15.3125,"height":20,"top":16,"right":461.8645935058594,"bottom":36,"left":446.5520935058594},"cc557e54-847d-48a4":{"x":446.5520935058594,"y":19.291667938232422,"width":15.3125,"height":12.25,"top":19.291667938232422,"right":461.8645935058594,"bottom":31.541667938232422,"left":446.5520935058594},"35ec20dd-8991-4228":{"x":448.0833435058594,"y":20.057292938232422,"width":12.25,"height":10.71875,"top":20.057292938232422,"right":460.3333435058594,"bottom":30.776042938232422,"left":448.0833435058594},"933faa84-fc31-4c0d":{"x":465.8645935058594,"y":16,"width":26.3125,"height":20,"top":16,"right":492.1770935058594,"bottom":36,"left":465.8645935058594},"f2fdfe3b-4ebe-40da":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"a8bde6f0-c791-4ab9":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"0ef317a0-d30f-4c6d":{"x":560.4791870117188,"y":8,"width":448,"height":36,"top":8,"right":1008.4791870117188,"bottom":44,"left":560.4791870117188},"46f82faf-6fcc-49ad":{"x":568.4791870117188,"y":16,"width":432,"height":20,"top":16,"right":1000.4791870117188,"bottom":36,"left":568.4791870117188},"8e9cc5d9-90c1-4be2":{"x":1076.78125,"y":10,"width":154.55209350585938,"height":32,"top":10,"right":1231.3333435058594,"bottom":42,"left":1076.78125},"b10a1eb6-94cb-4c83":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"0e62c4a8-8c77-4621":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"3d4913c7-07cd-438d":{"x":1076.78125,"y":10,"width":32,"height":32,"top":10,"right":1108.78125,"bottom":42,"left":1076.78125},"4853c5c0-270b-4dff":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"594fcdcb-921b-4690":{"x":1084.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1101.53125,"bottom":33,"left":1084.03125},"ed4d6c71-3fe2-461c":{"x":1086.65625,"y":24.6875,"width":11.375,"height":2.625,"top":24.6875,"right":1098.03125,"bottom":27.3125,"left":1086.65625},"51dc86ba-fd31-4ae5":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"3beaf557-e299-4a12":{"x":1112.78125,"y":10,"width":118.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1112.78125},"a81690e3-843a-41ca":{"x":1112.78125,"y":10,"width":32,"height":32,"top":10,"right":1144.78125,"bottom":42,"left":1112.78125},"7ab4c9a3-b067-4190":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"3ecc6a74-596b-4593":{"x":1091.729248046875,"y":44.395835876464844,"width":74.10417175292969,"height":24,"top":44.395835876464844,"right":1165.8334197998047,"bottom":68.39583587646484,"left":1091.729248046875},"50316098-65c7-454f":{"x":1099.729248046875,"y":48.395835876464844,"width":58.10416793823242,"height":16,"top":48.395835876464844,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"7747ec14-5a7a-4350":{"x":1099.729248046875,"y":47.72916793823242,"width":58.10416793823242,"height":16.666667938232422,"top":47.72916793823242,"right":1157.8334159851074,"bottom":64.39583587646484,"left":1099.729248046875},"0daeeef2-340d-47fc":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"50a7e4a4-a01e-4408":{"x":1120.03125,"y":19,"width":17.5,"height":14,"top":19,"right":1137.53125,"bottom":33,"left":1120.03125},"f65c115f-cca5-4d4a":{"x":1120.513916015625,"y":19.588232040405273,"width":16.534832000732422,"height":12.822509765625,"top":19.588232040405273,"right":1137.0487480163574,"bottom":32.41074180603027,"left":1120.513916015625},"c044a2c0-9e6d-4de6":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"240fb9a2-41c6-49ee":{"x":1152.78125,"y":10,"width":78.55208587646484,"height":32,"top":10,"right":1231.3333358764648,"bottom":42,"left":1152.78125},"b1857b8a-6997-447e":{"x":1160.78125,"y":19,"width":62.552085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1160.78125},"f57dff21-e45a-44c0":{"x":1160.78125,"y":19,"width":17.5,"height":14,"top":19,"right":1178.28125,"bottom":33,"left":1160.78125},"55404e7e-5ece-44fc":{"x":1162.53125,"y":19.875,"width":14,"height":12.25,"top":19.875,"right":1176.53125,"bottom":32.125,"left":1162.53125},"9678c18d-b01c-46f9":{"x":1182.28125,"y":19,"width":41.052085876464844,"height":14,"top":19,"right":1223.3333358764648,"bottom":33,"left":1182.28125},"59b3bca9-16ea-42a2":{"x":220,"y":-59.66666793823242,"width":1027.3333740234375,"height":2233.125,"top":-59.66666793823242,"right":1247.3333740234375,"bottom":2173.4583320617676,"left":220},"23a07765-4b6f-4cc3":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2085.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2049.4583320617676,"left":349.66668701171875},"e3c58a3b-6130-4e6c":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"c8d363cd-dad7-4343":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"fb1065f0-4be2-4478":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2069.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2033.4583320617676,"left":349.66668701171875},"fcdc638d-d113-4cc8":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":2053.125,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":2017.4583320617676,"left":349.66668701171875},"5df3a481-a910-4a30":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"323c736f-d631-435a":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"03ad161a-44a1-4905":{"x":349.66668701171875,"y":-35.66666793823242,"width":768,"height":64,"top":-35.66666793823242,"right":1117.6666870117188,"bottom":28.333332061767578,"left":349.66668701171875},"9c7be7cc-0dd0-4522":{"x":349.66668701171875,"y":44.333335876464844,"width":768,"height":152,"top":44.333335876464844,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"ac182ce0-1577-439c":{"x":349.66668701171875,"y":44.333335876464844,"width":768,"height":24,"top":44.333335876464844,"right":1117.6666870117188,"bottom":68.33333587646484,"left":349.66668701171875},"8558afe9-c0d2-411e":{"x":349.66668701171875,"y":44.333335876464844,"width":128.34375,"height":24,"top":44.333335876464844,"right":478.01043701171875,"bottom":68.33333587646484,"left":349.66668701171875},"06f9f96c-ff49-420a":{"x":349.66668701171875,"y":48.333335876464844,"width":14,"height":16,"top":48.333335876464844,"right":363.66668701171875,"bottom":64.33333587646484,"left":349.66668701171875},"d8b27842-14d9-45a7":{"x":350.16668701171875,"y":48.333335876464844,"width":13,"height":16,"top":48.333335876464844,"right":363.16668701171875,"bottom":64.33333587646484,"left":350.16668701171875},"bcf43bb7-33c1-4fc1":{"x":371.66668701171875,"y":44.333335876464844,"width":106.34375,"height":24,"top":44.333335876464844,"right":478.01043701171875,"bottom":68.33333587646484,"left":371.66668701171875},"fe7b0910-2cc5-4f44":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"370e6816-b4f3-441e":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"5fde6a21-a20f-4c16":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"a73f94e4-2be1-468e":{"x":349.66668701171875,"y":84.33333587646484,"width":768,"height":112,"top":84.33333587646484,"right":1117.6666870117188,"bottom":196.33333587646484,"left":349.66668701171875},"a296e17a-3fbf-4fbe":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"40223ff2-ec67-44bb":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"45a2b5e0-6e0f-4609":{"x":349.66668701171875,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":535.6666870117188,"bottom":136.33333587646484,"left":349.66668701171875},"ec685cad-2276-4dfe":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":527.6666870117188,"bottom":132.33333587646484,"left":357.66668701171875},"b46f8877-710e-4581":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":527.6666870117188,"bottom":108.33333587646484,"left":357.66668701171875},"c3a6512d-dbb1-404e":{"x":357.66668701171875,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":527.6666870117188,"bottom":108.33333587646484,"left":357.66668701171875},"56bb96c0-9d6f-439e":{"x":357.66668701171875,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":527.6666870117188,"bottom":132.33333587646484,"left":357.66668701171875},"caac51c4-cf29-4be9":{"x":357.66668701171875,"y":112.33333587646484,"width":97.83333587646484,"height":16,"top":112.33333587646484,"right":455.5000228881836,"bottom":128.33333587646484,"left":357.66668701171875},"ed315a3b-3fbb-4535":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"12a3f3bd-35fd-48e4":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"ef7e2444-275e-41cb":{"x":357.66668701171875,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":373.66668701171875,"bottom":128.33333587646484,"left":357.66668701171875},"1a80d0e3-e2e4-4443":{"x":377.66668701171875,"y":112.33333587646484,"width":77.83333587646484,"height":16,"top":112.33333587646484,"right":455.5000228881836,"bottom":128.33333587646484,"left":377.66668701171875},"a48a9f2d-2e92-431a":{"x":459.5,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":463.40625,"bottom":132.33333587646484,"left":459.5},"127e909d-96b9-4103":{"x":467.40625,"y":112.33333587646484,"width":4.208333492279053,"height":16,"top":112.33333587646484,"right":471.61458349227905,"bottom":128.33333587646484,"left":467.40625},"fec27fa8-aef4-42a9":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"a917b887-1bea-4203":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"d62b89c4-22f1-4177":{"x":543.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":729.6666870117188,"bottom":136.33333587646484,"left":543.6666870117188},"9fdafbad-19d2-4ad2":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":721.6666870117188,"bottom":132.33333587646484,"left":551.6666870117188},"676aea97-b445-4e7e":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":721.6666870117188,"bottom":108.33333587646484,"left":551.6666870117188},"afb00160-bf5d-4cee":{"x":551.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":721.6666870117188,"bottom":108.33333587646484,"left":551.6666870117188},"0bda2a5c-95d2-426f":{"x":551.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":721.6666870117188,"bottom":132.33333587646484,"left":551.6666870117188},"fefe87b1-9278-4e85":{"x":551.6666870117188,"y":112.33333587646484,"width":121.27083587646484,"height":16,"top":112.33333587646484,"right":672.9375228881836,"bottom":128.33333587646484,"left":551.6666870117188},"2bca0f26-f911-4e14":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"62996fea-cc04-4c37":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"d0f59419-2518-4654":{"x":551.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":567.6666870117188,"bottom":128.33333587646484,"left":551.6666870117188},"5e70e550-40d9-4557":{"x":571.6666870117188,"y":112.33333587646484,"width":101.27083587646484,"height":16,"top":112.33333587646484,"right":672.9375228881836,"bottom":128.33333587646484,"left":571.6666870117188},"c6588d87-4279-4789":{"x":676.9375,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":680.84375,"bottom":132.33333587646484,"left":676.9375},"08f2aedb-ea0b-42ce":{"x":684.84375,"y":112.33333587646484,"width":6.927083492279053,"height":16,"top":112.33333587646484,"right":691.770833492279,"bottom":128.33333587646484,"left":684.84375},"781a4dea-b71f-4339":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"9ab0924f-002a-4131":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"41332a3e-8183-42b7":{"x":737.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":923.6666870117188,"bottom":136.33333587646484,"left":737.6666870117188},"fb5bd943-9d4b-498b":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":915.6666870117188,"bottom":132.33333587646484,"left":745.6666870117188},"91c48008-66f6-4822":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":915.6666870117188,"bottom":108.33333587646484,"left":745.6666870117188},"7fc3a830-7aea-4b6b":{"x":745.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":915.6666870117188,"bottom":108.33333587646484,"left":745.6666870117188},"c69d470c-b20e-43c0":{"x":745.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":915.6666870117188,"bottom":132.33333587646484,"left":745.6666870117188},"89a25add-4f94-4257":{"x":745.6666870117188,"y":112.33333587646484,"width":137.3125,"height":16,"top":112.33333587646484,"right":882.9791870117188,"bottom":128.33333587646484,"left":745.6666870117188},"95219df4-5558-4819":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"5683a5bd-85e2-4b20":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"4b8a4caa-fa92-4797":{"x":745.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":761.6666870117188,"bottom":128.33333587646484,"left":745.6666870117188},"2c56cac0-24b7-4552":{"x":765.6666870117188,"y":112.33333587646484,"width":117.3125,"height":16,"top":112.33333587646484,"right":882.9791870117188,"bottom":128.33333587646484,"left":765.6666870117188},"4ddbc830-f8c6-4938":{"x":886.9791870117188,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":890.8854370117188,"bottom":132.33333587646484,"left":886.9791870117188},"35380cbf-159b-4c1f":{"x":894.8854370117188,"y":112.33333587646484,"width":7.1354169845581055,"height":16,"top":112.33333587646484,"right":902.0208539962769,"bottom":128.33333587646484,"left":894.8854370117188},"3cf6dcc3-2dca-4390":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"bf09bc69-cf90-4c54":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"f7f10518-f6a2-40ab":{"x":931.6666870117188,"y":84.33333587646484,"width":186,"height":52,"top":84.33333587646484,"right":1117.6666870117188,"bottom":136.33333587646484,"left":931.6666870117188},"773ad79f-ae38-49d6":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":40,"top":92.33333587646484,"right":1109.6666870117188,"bottom":132.33333587646484,"left":939.6666870117188},"c289791c-7f08-4dd6":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":1109.6666870117188,"bottom":108.33333587646484,"left":939.6666870117188},"44b18b34-feac-4e3a":{"x":939.6666870117188,"y":92.33333587646484,"width":170,"height":16,"top":92.33333587646484,"right":1109.6666870117188,"bottom":108.33333587646484,"left":939.6666870117188},"846721d4-3cf2-428c":{"x":939.6666870117188,"y":108.33333587646484,"width":170,"height":24,"top":108.33333587646484,"right":1109.6666870117188,"bottom":132.33333587646484,"left":939.6666870117188},"20a09b68-f784-477e":{"x":939.6666870117188,"y":112.33333587646484,"width":66.79167175292969,"height":16,"top":112.33333587646484,"right":1006.4583587646484,"bottom":128.33333587646484,"left":939.6666870117188},"43cca39e-0022-4fc0":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"892f29c6-6401-4700":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"1fef1718-b08f-4905":{"x":939.6666870117188,"y":112.33333587646484,"width":16,"height":16,"top":112.33333587646484,"right":955.6666870117188,"bottom":128.33333587646484,"left":939.6666870117188},"9e4f1485-534c-4283":{"x":959.6666870117188,"y":112.33333587646484,"width":46.79166793823242,"height":16,"top":112.33333587646484,"right":1006.4583549499512,"bottom":128.33333587646484,"left":959.6666870117188},"b5b4164a-f4c1-45d4":{"x":1010.4583740234375,"y":108.33333587646484,"width":3.90625,"height":24,"top":108.33333587646484,"right":1014.3646240234375,"bottom":132.33333587646484,"left":1010.4583740234375},"5a6b1ec7-5ede-4c66":{"x":1018.3646240234375,"y":112.33333587646484,"width":7.770833492279053,"height":16,"top":112.33333587646484,"right":1026.1354575157166,"bottom":128.33333587646484,"left":1018.3646240234375},"5456479d-7e77-4ec9":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"039eefbc-512d-4f3b":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"64bd20ee-4420-43c3":{"x":349.66668701171875,"y":144.33334350585938,"width":186,"height":52,"top":144.33334350585938,"right":535.6666870117188,"bottom":196.33334350585938,"left":349.66668701171875},"1db606b7-036d-431d":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":40,"top":152.33334350585938,"right":527.6666870117188,"bottom":192.33334350585938,"left":357.66668701171875},"30f04103-6371-48f2":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":16,"top":152.33334350585938,"right":527.6666870117188,"bottom":168.33334350585938,"left":357.66668701171875},"bb8889c9-609c-456b":{"x":357.66668701171875,"y":152.33334350585938,"width":170,"height":16,"top":152.33334350585938,"right":527.6666870117188,"bottom":168.33334350585938,"left":357.66668701171875},"32542a4a-51b0-4ad2":{"x":357.66668701171875,"y":168.33334350585938,"width":170,"height":24,"top":168.33334350585938,"right":527.6666870117188,"bottom":192.33334350585938,"left":357.66668701171875},"af0080d4-ffa5-4cb9":{"x":357.66668701171875,"y":172.33334350585938,"width":105.0625,"height":16,"top":172.33334350585938,"right":462.72918701171875,"bottom":188.33334350585938,"left":357.66668701171875},"4181bffb-648b-4373":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"116e6b00-d660-4879":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"d454e062-474a-4f3d":{"x":357.66668701171875,"y":172.33334350585938,"width":16,"height":16,"top":172.33334350585938,"right":373.66668701171875,"bottom":188.33334350585938,"left":357.66668701171875},"208023bb-e533-4054":{"x":377.66668701171875,"y":172.33334350585938,"width":85.0625,"height":16,"top":172.33334350585938,"right":462.72918701171875,"bottom":188.33334350585938,"left":377.66668701171875},"5999ad85-9f25-4c7e":{"x":466.72918701171875,"y":168.33334350585938,"width":3.90625,"height":24,"top":168.33334350585938,"right":470.63543701171875,"bottom":192.33334350585938,"left":466.72918701171875},"d6d5cffd-7197-40c6":{"x":474.63543701171875,"y":172.33334350585938,"width":7.677083492279053,"height":16,"top":172.33334350585938,"right":482.3125205039978,"bottom":188.33334350585938,"left":474.63543701171875},"a34ebdd8-4688-48df":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":1595.125,"top":220.33334350585938,"right":1117.6666870117188,"bottom":1815.4583435058594,"left":349.66668701171875},"9b1f0199-999b-4b05":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":32,"top":220.33334350585938,"right":1117.6666870117188,"bottom":252.33334350585938,"left":349.66668701171875},"4bac0e14-1da6-4aa6":{"x":349.66668701171875,"y":220.33334350585938,"width":768,"height":24,"top":220.33334350585938,"right":1117.6666870117188,"bottom":244.33334350585938,"left":349.66668701171875},"262690b6-c5ce-4cce":{"x":349.66668701171875,"y":220.33334350585938,"width":87.30208587646484,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":349.66668701171875},"5d65b1cc-92a6-4e49":{"x":349.66668701171875,"y":220.33334350585938,"width":87.30208587646484,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":349.66668701171875},"3d35c129-9293-4201":{"x":349.66668701171875,"y":220.33334350585938,"width":20,"height":24,"top":220.33334350585938,"right":369.66668701171875,"bottom":244.33334350585938,"left":349.66668701171875},"41d62912-c7c8-421a":{"x":349.66668701171875,"y":223.6666717529297,"width":20,"height":16,"top":223.6666717529297,"right":369.66668701171875,"bottom":239.6666717529297,"left":349.66668701171875},"d05a1854-6f39-424d":{"x":352.66668701171875,"y":224.6666717529297,"width":14,"height":14,"top":224.6666717529297,"right":366.66668701171875,"bottom":238.6666717529297,"left":352.66668701171875},"411509c0-5b02-4dd4":{"x":377.66668701171875,"y":220.33334350585938,"width":59.302085876464844,"height":24,"top":220.33334350585938,"right":436.9687728881836,"bottom":244.33334350585938,"left":377.66668701171875},"275d56b2-513c-4c48":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"4dc82e0e-d5bc-43e4":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"be897aa5-2eb0-41e9":{"x":349.66668701171875,"y":252.33334350585938,"width":768,"height":1523.125,"top":252.33334350585938,"right":1117.6666870117188,"bottom":1775.4583435058594,"left":349.66668701171875},"847fd6f1-8a2d-4ddc":{"x":349.66668701171875,"y":253,"width":768,"height":634,"top":253,"right":1117.6666870117188,"bottom":887,"left":349.66668701171875},"60e543e9-3c49-4101":{"x":349.66668701171875,"y":253,"width":514.625,"height":22,"top":253,"right":864.2916870117188,"bottom":275,"left":349.66668701171875},"6cffd73b-fbf4-4c5c":{"x":349.66668701171875,"y":284.3333435058594,"width":768,"height":572,"top":284.3333435058594,"right":1117.6666870117188,"bottom":856.3333435058594,"left":349.66668701171875},"ce3b4b85-bbd6-451b":{"x":375.66668701171875,"y":284.3333435058594,"width":742,"height":50,"top":284.3333435058594,"right":1117.6666870117188,"bottom":334.3333435058594,"left":375.66668701171875},"dbb3c333-767a-46f7":{"x":381.66668701171875,"y":285,"width":708.4896240234375,"height":46,"top":285,"right":1090.1563110351562,"bottom":331,"left":381.66668701171875},"ce45de3f-64f5-458c":{"x":381.66668701171875,"y":285,"width":283.57293701171875,"height":22,"top":285,"right":665.2396240234375,"bottom":307,"left":381.66668701171875},"88ea41e3-d5f6-4d7f":{"x":381.66668701171875,"y":285,"width":283.57293701171875,"height":22,"top":285,"right":665.2396240234375,"bottom":307,"left":381.66668701171875},"13158e00-e482-43c7":{"x":381.66668701171875,"y":285,"width":708.4896240234375,"height":46,"top":285,"right":1090.1563110351562,"bottom":331,"left":381.66668701171875},"7ce0a6c8-2d10-4328":{"x":706.6979370117188,"y":309,"width":23.36458396911621,"height":22,"top":309,"right":730.062520980835,"bottom":331,"left":706.6979370117188},"1e7a1345-d503-47f5":{"x":706.6979370117188,"y":309,"width":23.36458396911621,"height":22,"top":309,"right":730.062520980835,"bottom":331,"left":706.6979370117188},"ced9b056-943c-4d3c":{"x":710.6979370117188,"y":309,"width":16,"height":22,"top":309,"right":726.6979370117188,"bottom":331,"left":710.6979370117188},"bf41a1fb-86ed-47e7":{"x":710.6979370117188,"y":305.54168701171875,"width":16,"height":24,"top":305.54168701171875,"right":726.6979370117188,"bottom":329.54168701171875,"left":710.6979370117188},"fa1f6f9d-f96d-4162":{"x":710.6979370117188,"y":305.54168701171875,"width":16,"height":24,"top":305.54168701171875,"right":726.6979370117188,"bottom":329.54168701171875,"left":710.6979370117188},"eee8ae26-c754-41d4":{"x":710.6979370117188,"y":309.54168701171875,"width":16,"height":16,"top":309.54168701171875,"right":726.6979370117188,"bottom":325.54168701171875,"left":710.6979370117188},"453462b2-ec84-4dc6":{"x":375.66668701171875,"y":342.3333435058594,"width":742,"height":50,"top":342.3333435058594,"right":1117.6666870117188,"bottom":392.3333435058594,"left":375.66668701171875},"9c4e5353-1756-4beb":{"x":381.66668701171875,"y":343,"width":728.6979370117188,"height":46,"top":343,"right":1110.3646240234375,"bottom":389,"left":381.66668701171875},"6e483ca8-fa68-4731":{"x":381.66668701171875,"y":343,"width":289.28125,"height":22,"top":343,"right":670.9479370117188,"bottom":365,"left":381.66668701171875},"f665eb1c-418c-46e2":{"x":381.66668701171875,"y":343,"width":289.28125,"height":22,"top":343,"right":670.9479370117188,"bottom":365,"left":381.66668701171875},"4b6bcea6-2209-4951":{"x":381.66668701171875,"y":343,"width":728.6979370117188,"height":46,"top":343,"right":1110.3646240234375,"bottom":389,"left":381.66668701171875},"a552b5c9-7645-4086":{"x":703.3541870117188,"y":367,"width":23.36458396911621,"height":22,"top":367,"right":726.718770980835,"bottom":389,"left":703.3541870117188},"c30a812e-5f9c-4d83":{"x":703.3541870117188,"y":367,"width":23.36458396911621,"height":22,"top":367,"right":726.718770980835,"bottom":389,"left":703.3541870117188},"04640465-4061-4edd":{"x":707.3541870117188,"y":367,"width":16,"height":22,"top":367,"right":723.3541870117188,"bottom":389,"left":707.3541870117188},"525fa878-50ba-4dc0":{"x":707.3541870117188,"y":363.54168701171875,"width":16,"height":24,"top":363.54168701171875,"right":723.3541870117188,"bottom":387.54168701171875,"left":707.3541870117188},"ae12b31b-0aac-4f3b":{"x":707.3541870117188,"y":363.54168701171875,"width":16,"height":24,"top":363.54168701171875,"right":723.3541870117188,"bottom":387.54168701171875,"left":707.3541870117188},"30565224-05bc-42b7":{"x":707.3541870117188,"y":367.54168701171875,"width":16,"height":16,"top":367.54168701171875,"right":723.3541870117188,"bottom":383.54168701171875,"left":707.3541870117188},"2e513126-3ccd-4a93":{"x":375.66668701171875,"y":400.3333435058594,"width":742,"height":50,"top":400.3333435058594,"right":1117.6666870117188,"bottom":450.3333435058594,"left":375.66668701171875},"3a901b6b-8823-400f":{"x":381.66668701171875,"y":401,"width":659.8125,"height":46,"top":401,"right":1041.4791870117188,"bottom":447,"left":381.66668701171875},"386a027c-99f9-41b2":{"x":381.66668701171875,"y":401,"width":173.875,"height":22,"top":401,"right":555.5416870117188,"bottom":423,"left":381.66668701171875},"d2cc40af-1dd9-46ec":{"x":381.66668701171875,"y":401,"width":173.875,"height":22,"top":401,"right":555.5416870117188,"bottom":423,"left":381.66668701171875},"46d5b867-8704-441b":{"x":381.66668701171875,"y":401,"width":659.8125,"height":46,"top":401,"right":1041.4791870117188,"bottom":447,"left":381.66668701171875},"def7faae-818b-4309":{"x":457.6875,"y":425,"width":23.36458396911621,"height":22,"top":425,"right":481.0520839691162,"bottom":447,"left":457.6875},"55e27820-0e69-4e12":{"x":457.6875,"y":425,"width":23.36458396911621,"height":22,"top":425,"right":481.0520839691162,"bottom":447,"left":457.6875},"bf05b0f3-e5d1-4187":{"x":461.6875,"y":425,"width":16,"height":22,"top":425,"right":477.6875,"bottom":447,"left":461.6875},"1ee20641-c2c9-4a45":{"x":461.6875,"y":421.54168701171875,"width":16,"height":24,"top":421.54168701171875,"right":477.6875,"bottom":445.54168701171875,"left":461.6875},"1659752e-68dc-4a9b":{"x":461.6875,"y":421.54168701171875,"width":16,"height":24,"top":421.54168701171875,"right":477.6875,"bottom":445.54168701171875,"left":461.6875},"22a3d0a6-f68b-497a":{"x":461.6875,"y":425.54168701171875,"width":16,"height":16,"top":425.54168701171875,"right":477.6875,"bottom":441.54168701171875,"left":461.6875},"3043f974-c032-4a0e":{"x":375.66668701171875,"y":458.3333435058594,"width":742,"height":50,"top":458.3333435058594,"right":1117.6666870117188,"bottom":508.3333435058594,"left":375.66668701171875},"061afb7a-d917-4247":{"x":381.66668701171875,"y":459,"width":659.625,"height":46,"top":459,"right":1041.2916870117188,"bottom":505,"left":381.66668701171875},"000d8eb3-bc2c-47d1":{"x":381.66668701171875,"y":459,"width":193.30209350585938,"height":22,"top":459,"right":574.9687805175781,"bottom":481,"left":381.66668701171875},"a31a5b00-3f1d-4906":{"x":381.66668701171875,"y":459,"width":193.30209350585938,"height":22,"top":459,"right":574.9687805175781,"bottom":481,"left":381.66668701171875},"53a26a0f-4ff1-47b3":{"x":381.66668701171875,"y":459,"width":659.625,"height":46,"top":459,"right":1041.2916870117188,"bottom":505,"left":381.66668701171875},"9386c533-36fe-4083":{"x":598.15625,"y":483,"width":23.36458396911621,"height":22,"top":483,"right":621.5208339691162,"bottom":505,"left":598.15625},"59ae81a5-9daf-4e61":{"x":598.15625,"y":483,"width":23.36458396911621,"height":22,"top":483,"right":621.5208339691162,"bottom":505,"left":598.15625},"1b840274-2d28-4b6a":{"x":602.15625,"y":483,"width":16,"height":22,"top":483,"right":618.15625,"bottom":505,"left":602.15625},"d10e282e-1958-4f96":{"x":602.15625,"y":479.54168701171875,"width":16,"height":24,"top":479.54168701171875,"right":618.15625,"bottom":503.54168701171875,"left":602.15625},"b25a8e82-12c5-4f9d":{"x":602.15625,"y":479.54168701171875,"width":16,"height":24,"top":479.54168701171875,"right":618.15625,"bottom":503.54168701171875,"left":602.15625},"bf77f859-60c5-4721":{"x":602.15625,"y":483.54168701171875,"width":16,"height":16,"top":483.54168701171875,"right":618.15625,"bottom":499.54168701171875,"left":602.15625},"d70ed951-f6f4-42a2":{"x":375.66668701171875,"y":516.3333740234375,"width":742,"height":26,"top":516.3333740234375,"right":1117.6666870117188,"bottom":542.3333740234375,"left":375.66668701171875},"abea0b53-f851-47e6":{"x":381.66668701171875,"y":517,"width":700.5208740234375,"height":22,"top":517,"right":1082.1875610351562,"bottom":539,"left":381.66668701171875},"87525086-f477-4a32":{"x":381.66668701171875,"y":517,"width":178.2916717529297,"height":22,"top":517,"right":559.9583587646484,"bottom":539,"left":381.66668701171875},"8a910f2a-bfa0-4494":{"x":381.66668701171875,"y":517,"width":178.2916717529297,"height":22,"top":517,"right":559.9583587646484,"bottom":539,"left":381.66668701171875},"834b664a-62ef-4ff3":{"x":559.9583740234375,"y":517,"width":498.8645935058594,"height":22,"top":517,"right":1058.8229675292969,"bottom":539,"left":559.9583740234375},"700b2beb-a2bd-4ad9":{"x":1058.822998046875,"y":517,"width":23.36458396911621,"height":22,"top":517,"right":1082.1875820159912,"bottom":539,"left":1058.822998046875},"a304557f-a5df-43c4":{"x":1058.822998046875,"y":517,"width":23.36458396911621,"height":22,"top":517,"right":1082.1875820159912,"bottom":539,"left":1058.822998046875},"37f12dad-5d33-4857":{"x":1062.822998046875,"y":517,"width":16,"height":22,"top":517,"right":1078.822998046875,"bottom":539,"left":1062.822998046875},"26948cba-71e9-44a5":{"x":1062.822998046875,"y":513.5416870117188,"width":16,"height":24,"top":513.5416870117188,"right":1078.822998046875,"bottom":537.5416870117188,"left":1062.822998046875},"54f58512-1745-416a":{"x":1062.822998046875,"y":513.5416870117188,"width":16,"height":24,"top":513.5416870117188,"right":1078.822998046875,"bottom":537.5416870117188,"left":1062.822998046875},"69f4b68b-ed9c-4613":{"x":1062.822998046875,"y":517.5416870117188,"width":16,"height":16,"top":517.5416870117188,"right":1078.822998046875,"bottom":533.5416870117188,"left":1062.822998046875},"d158cbdd-5cb0-4bdf":{"x":375.66668701171875,"y":550.3333740234375,"width":742,"height":50,"top":550.3333740234375,"right":1117.6666870117188,"bottom":600.3333740234375,"left":375.66668701171875},"5dd4d2a3-0e81-436c":{"x":381.66668701171875,"y":551,"width":730.4479370117188,"height":46,"top":551,"right":1112.1146240234375,"bottom":597,"left":381.66668701171875},"55d732f3-dfbf-4430":{"x":381.66668701171875,"y":551,"width":441.9583435058594,"height":22,"top":551,"right":823.6250305175781,"bottom":573,"left":381.66668701171875},"dc8b9dd3-d402-4580":{"x":381.66668701171875,"y":551,"width":441.9583435058594,"height":22,"top":551,"right":823.6250305175781,"bottom":573,"left":381.66668701171875},"82d88286-a87b-4103":{"x":381.66668701171875,"y":551,"width":730.4479370117188,"height":46,"top":551,"right":1112.1146240234375,"bottom":597,"left":381.66668701171875},"72bc6539-7808-42ea":{"x":816.7916870117188,"y":575,"width":23.36458396911621,"height":22,"top":575,"right":840.156270980835,"bottom":597,"left":816.7916870117188},"93a100c8-fb8c-43ca":{"x":816.7916870117188,"y":575,"width":23.36458396911621,"height":22,"top":575,"right":840.156270980835,"bottom":597,"left":816.7916870117188},"3d936f1d-a568-42c3":{"x":820.7916870117188,"y":575,"width":16,"height":22,"top":575,"right":836.7916870117188,"bottom":597,"left":820.7916870117188},"f833002f-f527-4aed":{"x":820.7916870117188,"y":571.5416870117188,"width":16,"height":24,"top":571.5416870117188,"right":836.7916870117188,"bottom":595.5416870117188,"left":820.7916870117188},"5cd1cec3-63f7-4bb5":{"x":820.7916870117188,"y":571.5416870117188,"width":16,"height":24,"top":571.5416870117188,"right":836.7916870117188,"bottom":595.5416870117188,"left":820.7916870117188},"71836839-1725-463e":{"x":820.7916870117188,"y":575.5416870117188,"width":16,"height":16,"top":575.5416870117188,"right":836.7916870117188,"bottom":591.5416870117188,"left":820.7916870117188},"4d74a06b-e71a-4fb4":{"x":220,"y":504,"width":1043.3333740234375,"height":73.33333587646484,"top":504,"right":1263.3333740234375,"bottom":577.3333358764648,"left":220},"e371ba15-31ee-4d95":{"x":357.66668701171875,"y":504,"width":768,"height":73.33333587646484,"top":504,"right":1125.6666870117188,"bottom":577.3333358764648,"left":357.66668701171875},"d5e67e5a-7c1f-44aa":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"c6fce410-0af7-455f":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"245985ad-1b58-4758":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"8e126868-5968-4212":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3800cab4-6404-4885":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"73a881eb-242e-4ba9":{"x":381.66668701171875,"y":504,"width":720,"height":73.33333587646484,"top":504,"right":1101.6666870117188,"bottom":577.3333358764648,"left":381.66668701171875},"3ee2c1ad-db74-4aad":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"b487f7c7-5a80-4400":{"x":389.66668701171875,"y":512,"width":704,"height":57.333335876464844,"top":512,"right":1093.6666870117188,"bottom":569.3333358764648,"left":389.66668701171875},"bdc5fb0d-eb1f-4496":{"x":891.5416870117188,"y":520.6666870117188,"width":194.125,"height":40,"top":520.6666870117188,"right":1085.6666870117188,"bottom":560.6666870117188,"left":891.5416870117188},"f6de9c49-6082-4769":{"x":899.5416870117188,"y":524.6666870117188,"width":130.125,"height":32,"top":524.6666870117188,"right":1029.6666870117188,"bottom":556.6666870117188,"left":899.5416870117188},"f59e4dfc-5b11-4e79":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"13f195e4-3b1a-4e39":{"x":870.65625,"y":498.2708435058594,"width":187.89584350585938,"height":24,"top":498.2708435058594,"right":1058.5520935058594,"bottom":522.2708435058594,"left":870.65625},"ec05d9bc-cfba-497f":{"x":878.65625,"y":502.2708435058594,"width":171.89584350585938,"height":16,"top":502.2708435058594,"right":1050.5520935058594,"bottom":518.2708435058594,"left":878.65625},"0669e2bd-e30d-461f":{"x":878.65625,"y":501.60418701171875,"width":171.89584350585938,"height":16.666667938232422,"top":501.60418701171875,"right":1050.5520935058594,"bottom":518.2708549499512,"left":878.65625},"fa488be5-8f46-475c":{"x":907.5416870117188,"y":529,"width":114.125,"height":23.33333396911621,"top":529,"right":1021.6666870117188,"bottom":552.3333339691162,"left":907.5416870117188},"b31b1f81-4012-497f":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"63a75b8d-57dc-4086":{"x":907.5416870117188,"y":529,"width":39.333335876464844,"height":23.33333396911621,"top":529,"right":946.8750228881836,"bottom":552.3333339691162,"left":907.5416870117188},"ddf67cb9-e0f7-4966":{"x":911.2083740234375,"y":532.6666870117188,"width":32,"height":16,"top":532.6666870117188,"right":943.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"3a40e1fd-2b4a-4f63":{"x":911.2083740234375,"y":532.6666870117188,"width":16,"height":16,"top":532.6666870117188,"right":927.2083740234375,"bottom":548.6666870117188,"left":911.2083740234375},"c2907036-f298-445f":{"x":950.875,"y":533.6666870117188,"width":50.78125,"height":14,"top":533.6666870117188,"right":1001.65625,"bottom":547.6666870117188,"left":950.875},"fa5817d7-bb0c-4832":{"x":1005.65625,"y":533.6666870117188,"width":16.010417938232422,"height":14,"top":533.6666870117188,"right":1021.6666679382324,"bottom":547.6666870117188,"left":1005.65625},"771ccc57-eaf1-4333":{"x":1037.666748046875,"y":520.6666870117188,"width":40,"height":40,"top":520.6666870117188,"right":1077.666748046875,"bottom":560.6666870117188,"left":1037.666748046875},"912c7141-3166-4ce3":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a75b1676-c8ed-450f":{"x":1045.166748046875,"y":530.6666870117188,"width":25,"height":20,"top":530.6666870117188,"right":1070.166748046875,"bottom":550.6666870117188,"left":1045.166748046875},"a48b63ea-377a-410d":{"x":1050.272216796875,"y":532.0221557617188,"width":14.7890625,"height":17.39453125,"top":532.0221557617188,"right":1065.061279296875,"bottom":549.4166870117188,"left":1050.272216796875}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-0-0.json b/demonstrations/ieckqwf/dom_snapshots/page-0-0.json new file mode 100644 index 0000000000000000000000000000000000000000..1f71683c0f6a417454f155aab08d0e14b89ec35a --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-0-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 2, 4, 2, 2, 2, 2, 9, 2, 1, 1, 13, 13, 15, 15, 17, 15, 15, 20, 15, 15, 23, 15, 13, 13, 13, 1], "nodeType": [9, 1, 1, 3, 1, 3, 3, 1, 3, 1, 3, 3, 3, 1, 3, 1, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 1, 3, 8], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 14, 12, 12, 17, 12, 22, 12, 12, 12, 28, 12, 31, 12, 37, 12, 12, 40, 12, 12, 40, 12, 12, 12, 48, 12, 53], "nodeValue": [-1, -1, -1, 13, -1, 1, 13, -1, 13, -1, 25, 26, 27, -1, 13, -1, 36, -1, 1, 36, -1, 43, 36, -1, 46, 13, 47, -1, 27, 54], "backendNodeId": [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], "attributes": [[], [], [7, 8], [], [7, 15], [], [], [18, 19, 7, 20], [], [7, 23], [], [], [], [7, 29], [], [32, 33, 7, 34], [], [7, 38], [], [], [7, 41], [], [], [7, 44], [], [], [], [49, 50, 7, 51], [], []], "textValue": {"index": [], "value": []}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [], "value": []}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": []}, "currentSourceURL": {"index": [], "value": []}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 13, 15, 17, 18, 20, 21, 23, 24], "styles": [[], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 720], [0, 64, 1280, 592], [0, 64, 1280, 166.1875], [0, 64, 1280, 55], [481.109375, 65, 317.765625, 53], [0, 167, 1280, 22], [363.765625, 167, 552.46875, 21], [0, 208.1875, 1280, 22], [396.234375, 208.1875, 487.515625, 21]], "text": [-1, -1, -1, -1, -1, 1, -1, 43, -1, 46], "stackingContexts": {"index": [0, 1]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1], "offsetRects": [[], [0, 0, 1280, 720], [0, 0, 1280, 592], [0, 64, 1280, 166], [0, 64, 1280, 55], [], [0, 167, 1280, 22], [], [0, 208, 1280, 22], []], "scrollRects": [[], [0, 0, 1280, 720], [0, 0, 1280, 720], [0, 0, 1280, 166], [0, 0, 1280, 55], [], [0, 0, 1280, 22], [], [0, 0, 1280, 22], []], "clientRects": [[], [0, 0, 1280, 720], [0, 0, 1280, 720], [0, 0, 1280, 166], [0, 0, 1280, 55], [], [0, 0, 1280, 22], [], [0, 0, 1280, 22], []]}, "textBoxes": {"layoutIndex": [5, 7, 9], "bounds": [[481.109375, 65, 317.765625, 53], [363.765625, 167, 552.46875, 21], [396.234375, 208.1875, 487.515625, 21]], "start": [0, 0, 0], "length": [14, 73, 64]}, "scrollOffsetX": 0, "scrollOffsetY": 0, "contentWidth": 1280, "contentHeight": 720}], "strings": ["about:blank", "Action Capture", "UTF-8", "A631C1C22C6EBF65892ACFE1A96A4070", "#document", "HTML", "HEAD", "bid", "75f84d07-4b91-422b", "aria-roledescription", "", "aria-description", "#text", "\n ", "TITLE", "e3905ced-5a58-45d4", "", "META", "charset", "utf-8", "bc81822f-7b3d-4545", "", "STYLE", "d5b388b6-6e92-467c", "", "\n body {\n background-color: #F9F9F9;\n color: #333;\n font-size: 1.2em;\n margin: 0;\n padding: 0;\n text-align: center;\n }\n\n .container {\n margin-top: 5%;\n margin-bottom: 5%;\n }\n\n h1 {\n font-size: 2.5em;\n margin-bottom: 1em;\n }\n\n p {\n margin-bottom: 1em;\n }\n ", "\n", "\n\n", "BODY", "4c870135-e649-4f8b", "", "DIV", "class", "container", "c4b4b212-461c-4efb", "", "\n ", "H1", "5155036d-131b-4ae5", "", "P", "a3155ba6-af3f-497a", "", "Wait for user instructions, then begin by typing a URL into a search bar.", "4ff17368-0a21-4458", "", "Remember to perform all the actions in the currently active tab.", "\n\n\n\n\n", "SCRIPT", "src", "/js/content.js", "19947502-312a-412f", "", "#comment", " include content.js "]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-12-0.json b/demonstrations/ieckqwf/dom_snapshots/page-12-0.json new file mode 100644 index 0000000000000000000000000000000000000000..abf6b159f611464a50ae36abca9a7ddaca228df3 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-12-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 23, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 22, 671, 672, 673, 3, 674, 4, 675, 676, 677, 678, 5, 679, 680, 681, 6, 682, 683, 684, 685, 7, 686, 687, 688, 8, 689, 690, 691, 692, 9, 693, 694, 695, 10, 696, 697, 698, 699, 11, 700, 701, 12, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 13, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 14, 745, 746, 747, 748, 15, 749, 750, 751, 752, 753, 754, 755, 756, 757, 16, 758, 759, 760, 17, 761, 762, 763, 764, 765, 18, 766, 767, 768, 769, 770, 771, 772, 19, 773, 774, 775, 776, 777, 778, 779, 20, 780, 781, 782, 783, 784, 785, 786, 21, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 4119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 4119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 4119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 4119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 4119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "E2C9E97BB99B7D1B0C234CAB1201BD6E", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-17-0.json b/demonstrations/ieckqwf/dom_snapshots/page-17-0.json new file mode 100644 index 0000000000000000000000000000000000000000..7e007defaaec6b2c0f679422fb982b227769db8e --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-17-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 4, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 5, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 25, 673, 6, 674, 7, 675, 676, 677, 678, 8, 679, 680, 681, 9, 682, 683, 684, 685, 10, 686, 687, 688, 11, 689, 690, 691, 692, 12, 693, 694, 695, 13, 696, 697, 698, 699, 14, 700, 701, 15, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 16, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 17, 745, 746, 747, 748, 18, 749, 750, 751, 752, 753, 754, 755, 756, 757, 19, 758, 759, 760, 20, 761, 762, 763, 764, 765, 21, 766, 767, 768, 769, 770, 771, 772, 22, 773, 774, 775, 776, 777, 778, 779, 23, 780, 781, 782, 783, 784, 785, 786, 24, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "E48A19AB7E756A4000A5CF9B999445AB", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-2-0.json b/demonstrations/ieckqwf/dom_snapshots/page-2-0.json new file mode 100644 index 0000000000000000000000000000000000000000..a617bed3e550f7b3ff7618a89ddfa16af423cb74 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-2-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 2, 2, 2, 6, 2, 2, 2, 2, 2, 12, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 44, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 61, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 91, 93, 93, 93, 93, 93, 93, 93, 93, 93, 88, 103, 104, 84, 106, 107, 108, 109, 108, 111, 112, 111, 114, 84, 116, 117, 118, 119, 120, 121, 120, 123, 116, 125, 126, 127, 128, 129, 128, 131, 116, 133, 134, 135, 136, 137, 136, 139, 116, 141, 142, 143, 144, 145, 144, 147, 84, 83, 150, 151, 152, 153, 151, 155, 151, 157, 158, 159, 160, 161, 150, 163, 164, 165, 166, 167, 165, 169, 170, 171, 150, 173, 174, 175, 176, 177, 176, 179, 173, 181, 182, 183, 173, 185, 186, 187, 79, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 198, 202, 194, 204, 205, 206, 207, 207, 209, 209, 209, 209, 209, 209, 209, 209, 209, 204, 219, 220, 221, 220, 223, 194, 225, 226, 227, 194, 229, 230, 231, 232, 233, 234, 235, 236, 232, 238, 239, 231, 241, 242, 243, 244, 243, 246, 230, 248, 249, 250, 251, 250, 253, 192, 255, 256, 257, 258, 259, 260, 261, 262, 260, 264, 256, 266, 267, 267, 267, 270, 271, 272, 273, 274, 271, 276, 277, 278, 279, 278, 281, 276, 283, 284, 285, 286, 285, 284, 289, 290, 291, 292, 293, 294, 295, 296, 294, 298, 299, 300, 301, 299, 303, 298, 305, 298, 307, 290, 309, 310, 311, 312, 313, 314, 312, 316, 317, 318, 319, 317, 321, 316, 323, 316, 325, 290, 327, 328, 329, 330, 331, 332, 330, 334, 335, 336, 337, 335, 339, 334, 341, 334, 343, 290, 345, 346, 347, 348, 349, 350, 348, 352, 353, 354, 355, 353, 357, 352, 359, 352, 361, 290, 363, 364, 365, 366, 367, 368, 366, 370, 371, 372, 373, 371, 375, 370, 377, 370, 379, 271, 381, 382, 383, 384, 385, 386, 387, 385, 389, 381, 391, 392, 393, 394, 395, 394, 397, 394, 399, 394, 401, 394, 403, 394, 405, 405, 407, 407, 409, 407, 411, 412, 413, 411, 415, 411, 417, 411, 419, 411, 421, 411, 423, 411, 425, 411, 427, 411, 429, 430, 431, 432, 433, 434, 430, 411, 407, 438, 405, 405, 441, 441, 443, 441, 445, 446, 447, 445, 449, 445, 451, 445, 453, 445, 455, 445, 457, 445, 459, 445, 461, 445, 463, 464, 465, 466, 467, 468, 464, 445, 441, 472, 405, 405, 475, 475, 477, 475, 479, 480, 481, 479, 483, 479, 485, 479, 487, 479, 489, 479, 491, 479, 493, 494, 495, 496, 497, 498, 494, 479, 475, 502, 405, 405, 505, 505, 507, 505, 509, 510, 511, 509, 513, 509, 515, 505, 517, 405, 271, 256, 256, 522, 523, 524, 525, 526, 527, 528, 529, 530, 526, 532, 533, 524, 535, 536, 537, 538, 539, 540, 540, 540, 543, 544, 545, 546, 547, 548, 544, 550, 551, 552, 553, 550, 555, 550, 557, 543, 559, 560, 561, 522, 78, 564, 565, 566, 567, 568, 569, 570, 571, 570, 573, 566, 575, 576, 577, 578, 579, 578, 581, 566, 583, 584, 585, 586, 587, 586, 589, 566, 591, 592, 593, 594, 595, 594, 597, 565, 75, 600, 75, 75, 75, 75, 75, 606, 607, 75, 75, 610, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 626, 627, 628, 628, 627, 631], "nodeType": [9, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 3, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 12, 12, 21, 24, 25, 25, 25, 25, 12, 24, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 25, 25, 132, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 132, 24, 49, 49, 197, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 12, 24, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 280, 283, 287, 283, 283, 283, 283, 283, 283, 283, 283, 316, 283, 283, 283, 283, 333, 340, 333, 350, 350, 350, 350, 350, 350, 350, 350, 350, 283, 283, 24, 283, 283, 283, 283, 24, 283, 283, 24, 283, 24, 283, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 283, 283, 283, 24, 283, 24, 283, 283, 531, 283, 444, 24, 316, 283, 283, 283, 283, 557, 283, 283, 283, 24, 283, 283, 531, 283, 333, 437, 444, 24, 316, 283, 333, 437, 316, 283, 333, 437, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 557, 283, 24, 283, 316, 283, 333, 340, 333, 350, 350, 350, 350, 350, 350, 350, 350, 350, 316, 283, 333, 437, 444, 24, 283, 283, 283, 444, 283, 283, 283, 531, 283, 283, 283, 444, 24, 283, 333, 437, 283, 531, 283, 333, 437, 444, 24, 283, 531, 283, 333, 437, 444, 24, 283, 283, 283, 283, 283, 283, 283, 283, 557, 283, 24, 283, 283, 283, 283, 283, 283, 283, 283, 283, 24, 283, 283, 283, 333, 437, 846, 24, 283, 283, 283, 283, 283, 283, 283, 283, 316, 283, 283, 283, 283, 283, 24, 283, 283, 283, 283, 557, 283, 24, 283, 24, 283, 24, 316, 283, 283, 283, 283, 283, 24, 283, 283, 283, 283, 557, 283, 24, 283, 24, 283, 24, 316, 283, 283, 283, 283, 283, 24, 283, 283, 283, 283, 557, 283, 24, 283, 24, 283, 24, 316, 283, 283, 283, 283, 283, 24, 283, 283, 283, 283, 557, 283, 24, 283, 24, 283, 24, 316, 283, 283, 283, 283, 283, 24, 283, 283, 283, 283, 557, 283, 24, 283, 24, 283, 24, 283, 283, 283, 283, 283, 283, 333, 437, 283, 24, 283, 283, 283, 283, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 1115, 24, 1120, 1123, 444, 24, 444, 444, 1132, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 444, 316, 283, 444, 283, 24, 24, 444, 444, 24, 24, 1120, 1123, 444, 24, 444, 444, 1132, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 444, 316, 283, 444, 283, 24, 24, 444, 444, 24, 24, 1120, 1123, 444, 24, 444, 444, 1132, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 24, 444, 444, 316, 283, 444, 283, 24, 24, 444, 444, 24, 24, 1120, 1123, 444, 24, 444, 444, 1132, 24, 444, 24, 444, 24, 444, 24, 24, 283, 283, 283, 283, 283, 283, 531, 283, 283, 283, 444, 24, 283, 333, 437, 283, 283, 283, 283, 283, 283, 1347, 283, 283, 531, 283, 283, 283, 444, 24, 283, 283, 283, 283, 283, 444, 24, 444, 24, 531, 283, 333, 437, 283, 283, 283, 283, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 316, 283, 333, 437, 444, 24, 283, 283, 316, 283, 333, 437, 444, 24, 283, 132, 24, 132, 24, 1347, 132, 1502, 846, 24, 132, 132, 24, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 1549, 283, 283, 49, 283, 283, 49], "nodeValue": [-1, -1, -1, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 48, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 188, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 241, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 384, -1, -1, -1, -1, 396, -1, -1, 403, -1, 407, -1, -1, -1, -1, -1, -1, -1, -1, 448, -1, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, -1, -1, 487, -1, -1, -1, -1, -1, -1, -1, 506, -1, -1, -1, -1, -1, 521, -1, 525, -1, -1, -1, -1, -1, 541, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, 593, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 708, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 744, -1, -1, -1, -1, -1, -1, -1, -1, -1, 770, -1, -1, -1, -1, -1, -1, 770, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, 829, -1, -1, -1, -1, -1, -1, 849, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 892, -1, -1, -1, -1, -1, -1, 913, -1, 917, -1, 921, -1, -1, -1, -1, -1, -1, 935, -1, -1, -1, -1, -1, -1, 950, -1, 917, -1, 955, -1, -1, -1, -1, -1, -1, 969, -1, -1, -1, -1, -1, -1, 984, -1, 917, -1, 989, -1, -1, -1, -1, -1, -1, 1003, -1, -1, -1, -1, -1, -1, 1018, -1, 917, -1, 41, -1, -1, -1, -1, -1, -1, 1036, -1, -1, -1, -1, -1, -1, 1051, -1, 917, -1, 1056, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1085, -1, -1, -1, -1, -1, 1102, -1, 1105, -1, 1108, -1, 1111, -1, 1114, -1, 1119, -1, -1, -1, 1119, -1, -1, -1, 1135, -1, 1138, -1, 1141, -1, 1144, -1, 1147, -1, 1150, -1, 1153, -1, 1156, -1, -1, -1, -1, -1, -1, 921, 1174, -1, -1, 1119, 1119, -1, -1, -1, 1119, -1, -1, -1, 1190, -1, 1193, -1, 1196, -1, 1199, -1, 1202, -1, 1205, -1, 1208, -1, 1211, -1, -1, -1, -1, -1, -1, 921, 1174, -1, -1, 1119, 1119, -1, -1, -1, 1119, -1, -1, -1, 1239, -1, 1242, -1, 1245, -1, 1248, -1, 1251, -1, 1254, -1, -1, -1, -1, -1, -1, 921, 1174, -1, -1, 1119, 1119, -1, -1, -1, 1119, -1, -1, -1, 1282, -1, 1285, -1, 1288, -1, 1119, 1119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1321, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1375, -1, -1, -1, -1, -1, -1, 1391, -1, 1394, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 448, -1, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, -1, -1, 487, -1, -1, -1, -1, -1, -1, -1, 506, -1, -1, 1483, -1, 1119, -1, -1, -1, -1, 1, -1, -1, 1518, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 3, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 4, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 7, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 8, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 9, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 5, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 2, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 6, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [13, 14, 7, 17], [13, 14, 7, 19], [7, 22], [], [26, 27, 7, 28], [30, 31, 32, 33, 7, 34], [30, 36, 32, 37, 7, 38], [30, 40, 32, 41, 7, 42], [44, 45, 7, 46], [], [50, 51, 52, 53, 7, 54], [50, 51, 44, 56, 57, 58, 52, 59, 7, 60], [50, 51, 44, 56, 57, 62, 52, 63, 7, 64], [50, 51, 44, 56, 57, 66, 52, 67, 7, 68], [50, 70, 57, 71, 52, 72, 7, 73], [50, 70, 57, 75, 52, 76, 7, 77], [50, 70, 57, 79, 52, 80, 7, 81], [50, 70, 57, 83, 52, 84, 7, 85], [50, 70, 57, 87, 52, 88, 7, 89], [50, 70, 57, 91, 52, 92, 7, 93], [50, 70, 57, 95, 52, 96, 7, 97], [50, 70, 57, 99, 52, 100, 7, 101], [50, 70, 57, 103, 52, 104, 7, 105], [50, 51, 44, 56, 57, 107, 52, 108, 7, 109], [50, 111, 44, 112, 52, 113, 114, 115, 7, 116], [50, 118, 52, 119, 7, 120], [30, 122, 32, 123, 124, 125, 7, 126], [30, 122, 32, 128, 124, 129, 7, 130], [133, 134, 135, 136, 137, -1, 138, -1, 7, 139], [50, 141, 52, 142, 143, 144, 44, 145, 146, 147, 148, 149, 7, 150], [50, 141, 52, 152, 143, 144, 44, 145, 146, 147, 148, 149, 7, 153], [50, 141, 52, 155, 143, 144, 44, 145, 146, 147, 148, 149, 7, 156], [50, 141, 52, 158, 143, 144, 44, 145, 146, 147, 148, 149, 7, 159], [50, 141, 52, 161, 143, 144, 44, 145, 146, 147, 148, 149, 7, 162], [50, 141, 52, 164, 143, 144, 44, 145, 146, 147, 148, 149, 7, 165], [50, 141, 52, 167, 143, 144, 44, 145, 146, 147, 148, 149, 7, 168], [50, 141, 52, 170, 143, 144, 44, 145, 146, 147, 148, 149, 7, 171], [50, 141, 52, 173, 143, 144, 44, 145, 146, 147, 148, 149, 7, 174], [50, 141, 52, 176, 143, 144, 44, 145, 146, 147, 148, 149, 7, 177], [50, 141, 52, 179, 143, 144, 44, 145, 146, 147, 148, 149, 7, 180], [182, 183, 184, 185, 7, 186], [], [50, 141, 52, 189, 143, 190, 7, 191], [50, 193, 52, 189, 194, -1, 7, 195], [198, -1, 7, 199], [138, -1, 201, -1, 133, 202, 7, 203], [133, 205, 138, -1, 7, 206], [133, 208, 138, -1, 7, 209], [133, 211, 138, -1, 7, 212], [133, 214, 138, -1, 7, 215], [133, 217, 138, -1, 7, 218], [133, 220, 138, -1, 7, 221], [133, 223, 138, -1, 7, 224], [133, 226, 138, -1, 7, 227], [133, 229, 138, -1, 7, 230], [133, 232, 138, -1, 7, 233], [133, 235, 138, -1, 7, 236], [182, 238, 7, 239], [], [143, 242, 50, 243, 52, 244, 7, 245], [143, 242, 50, 243, 52, 247, 7, 248], [143, 242, 50, 243, 52, 250, 7, 251], [143, 242, 50, 243, 52, 253, 7, 254], [143, 242, 50, 243, 52, 256, 7, 257], [143, 242, 50, 243, 52, 259, 7, 260], [143, 242, 50, 243, 52, 262, 7, 263], [143, 242, 50, 243, 52, 265, 7, 266], [143, 242, 50, 243, 52, 268, 7, 269], [143, 242, 50, 243, 52, 271, 7, 272], [143, 242, 50, 243, 52, 274, 7, 275], [143, 242, 50, 243, 52, 277, 7, 278], [7, 281], [182, 284, 7, 285], [288, 289, 7, 290], [288, 292, 7, 293], [288, 295, 7, 296], [288, 298, 7, 299], [288, 301, 7, 302], [288, 304, 7, 305], [288, 307, 7, 308], [288, 310, 7, 311], [288, 313, 7, 314], [288, 317, 52, 318, 7, 319], [288, 321, 7, 322], [288, 324, 7, 325], [288, 327, 7, 328], [288, 330, 7, 331], [334, 335, 336, 337, 7, 338], [341, 342, 343, 342, 288, 344, 7, 345], [288, 347, 7, 348], [351, 352, 353, 354, 355, 356, 7, 357], [351, 352, 353, 359, 355, 356, 7, 360], [351, 352, 353, 362, 355, 356, 7, 363], [351, 362, 353, 354, 355, 356, 7, 365], [351, 362, 353, 359, 355, 356, 7, 367], [351, 362, 353, 362, 355, 356, 7, 369], [351, 371, 353, 354, 355, 356, 7, 372], [351, 371, 353, 359, 355, 356, 7, 374], [351, 371, 353, 362, 355, 356, 7, 376], [288, 378, 7, 379], [288, 381, 7, 382], [], [288, 385, 7, 386], [7, 388], [288, 390, 7, 391], [288, 393, 7, 394], [], [288, 397, 7, 398], [288, 400, 7, 401], [], [288, 404, 7, 405], [], [288, 408, 7, 409], [288, 411, 7, 412], [288, 414, 7, 415], [288, 417, 52, 318, 190, 418, 7, 419], [288, 421, 7, 422], [424, 14, 425, 426, 427, 428, 429, 430, 288, 431, 432, 433, 336, 337, 334, 434, 7, 435], [438, 439, 440, 441, 7, 442], [288, 445, 7, 446], [], [288, 411, 7, 449], [288, 414, 7, 451], [288, 417, 52, 453, 190, 418, 7, 454], [288, 421, 7, 456], [424, 14, 425, 426, 427, 428, 429, 458, 288, 459, 432, 433, 336, 337, 334, 460, 7, 461], [438, 439, 440, 463, 7, 464], [288, 445, 7, 466], [], [288, 411, 7, 469], [288, 414, 7, 471], [288, 417, 52, 473, 190, 418, 7, 474], [288, 421, 7, 476], [424, 14, 425, 426, 427, 428, 429, 478, 288, 479, 432, 433, 336, 337, 334, 434, 7, 480], [438, 439, 440, 482, 7, 483], [288, 445, 7, 485], [], [288, 411, 7, 488], [288, 414, 7, 490], [288, 417, 52, 492, 190, 418, 7, 493], [288, 421, 7, 495], [424, 14, 425, 426, 427, 428, 429, 497, 288, 498, 432, 433, 336, 337, 334, 460, 7, 499], [438, 439, 440, 501, 7, 502], [288, 445, 7, 504], [], [288, 507, 7, 508], [288, 510, 7, 511], [288, 513, 7, 514], [7, 516], [288, 518, 7, 519], [], [288, 522, 7, 523], [], [288, 526, 7, 527], [7, 529], [44, 532, 288, 533, 7, 534], [288, 536, 7, 537], [288, 445, 7, 539], [], [52, 542, 7, 543], [288, 545, 7, 546], [288, 548, 7, 549], [288, 551, 7, 552], [288, 554, 7, 555], [558, 559, 288, 560, 133, 561, 7, 562], [7, 564], [288, 566, 7, 567], [288, 569, 7, 570], [], [288, 573, 7, 574], [7, 576], [44, 532, 288, 578, 7, 579], [288, 536, 7, 581], [424, 14, 425, 426, 427, 428, 429, 583, 288, 584, 432, 433, 336, 337, 334, 585, 7, 586], [438, 439, 440, 588, 7, 589], [288, 445, 7, 591], [], [288, 594, 595, 596, 52, 597, 190, 418, 7, 598], [288, 536, 7, 600], [424, 14, 425, 426, 427, 602, 429, 603, 288, 604, 432, 433, 336, 337, 334, 460, 7, 605], [438, 439, 440, 607, 7, 608], [288, 594, 595, 596, 52, 610, 190, 418, 7, 611], [288, 536, 7, 613], [424, 14, 425, 426, 427, 602, 429, 615, 288, 616, 432, 433, 336, 337, 334, 617, 7, 618], [438, 439, 440, 620, 7, 621], [288, 623, 7, 624], [288, 626, 7, 627], [288, 629, 7, 630], [288, 632, 7, 633], [288, 635, 7, 636], [288, 638, 7, 639], [288, 641, 7, 642], [288, 644, 7, 645], [288, 647, 7, 648], [288, 566, 7, 650], [288, 551, 7, 652], [288, 654, 7, 655], [558, 559, 288, 560, 133, 561, 7, 657], [288, 569, 7, 659], [], [288, 661, 7, 662], [52, 318, 7, 664], [288, 666, 7, 667], [334, 335, 336, 337, 7, 669], [341, 342, 343, 342, 288, 344, 7, 671], [288, 347, 7, 673], [351, 352, 353, 354, 355, 356, 7, 675], [351, 352, 353, 359, 355, 356, 7, 677], [351, 352, 353, 362, 355, 356, 7, 679], [351, 362, 353, 354, 355, 356, 7, 681], [351, 362, 353, 359, 355, 356, 7, 683], [351, 362, 353, 362, 355, 356, 7, 685], [351, 371, 353, 354, 355, 356, 7, 687], [351, 371, 353, 359, 355, 356, 7, 689], [351, 371, 353, 362, 355, 356, 7, 691], [288, 693, 52, 318, 190, 418, 7, 694], [288, 536, 7, 696], [424, 14, 425, 426, 427, 428, 429, 698, 288, 699, 432, 433, 336, 337, 334, 700, 7, 701], [438, 439, 440, 703, 7, 704], [288, 445, 7, 706], [], [288, 709, 7, 710], [288, -1, 7, 712], [288, 714, 7, 715], [288, 717, 7, 718], [288, 720, 7, 721], [288, 723, 7, 724], [288, 726, 7, 727], [44, 532, 288, 729, 7, 730], [288, 732, 7, 733], [288, 735, 7, 736], [288, 738, 7, 739], [288, 741, 7, 742], [], [288, 536, 7, 745], [424, 14, 425, 426, 427, 428, 429, 747, 288, 748, 432, 433, 336, 337, 334, 617, 7, 749], [438, 439, 440, 751, 7, 752], [7, 754], [44, 532, 288, 756, 7, 757], [288, 536, 7, 759], [424, 14, 425, 426, 427, 428, 429, 761, 288, 762, 432, 433, 336, 337, 334, 460, 7, 763], [438, 439, 440, 765, 7, 766], [288, 445, 7, 768], [], [288, 771, 7, 772], [44, 532, 288, 756, 7, 774], [288, 536, 7, 776], [424, 14, 425, 426, 427, 428, 429, 761, 288, 762, 432, 433, 336, 337, 334, 460, 7, 778], [438, 439, 440, 765, 7, 780], [288, 445, 7, 782], [], [288, 784, 7, 785], [288, 787, 7, 788], [288, 790, 7, 791], [288, 644, 7, 793], [288, 647, 7, 795], [288, 566, 7, 797], [288, 551, 7, 799], [288, 654, 7, 801], [558, 559, 288, 560, 133, 561, 7, 803], [288, 569, 7, 805], [], [288, -1, 7, 807], [7, 809], [7, 811], [7, 813], [288, 815, 7, 816], [288, 818, 7, 819], [288, -1, 7, 821], [288, 823, 7, 824], [288, 826, 7, 827], [], [288, 830, 7, 831], [288, 833, 7, 834], [288, 836, 7, 837], [424, 14, 425, 426, 427, 428, 429, 839, 288, 840, 432, 433, 336, 337, 334, 700, 7, 841], [438, 439, 440, 843, 7, 844], [7, 847], [], [288, 850, 7, 851], [288, 853, 7, 854], [288, 856, 7, 857], [288, 859, 7, 860], [288, 862, 7, 863], [7, 865], [288, 867, 7, 868], [288, 870, 7, 871], [52, 873, 595, 596, 50, 874, 288, 875, 7, 876], [288, 878, 7, 879], [288, 881, 7, 882], [288, 884, 7, 885], [7, 887], [288, 889, 7, 890], [], [288, 893, 7, 894], [288, 896, 7, 897], [288, 551, 7, 899], [288, 901, 7, 902], [288, 904, 133, 905, 558, 906, 341, 907, 343, 907, 7, 908], [288, 910, 7, 911], [], [288, 914, 7, 915], [], [288, 918, 7, 919], [], [52, 922, 595, 596, 50, 874, 288, 875, 7, 923], [288, 878, 7, 925], [288, 881, 7, 927], [288, 884, 7, 929], [7, 931], [288, 889, 7, 933], [], [288, 893, 7, 936], [288, 896, 7, 938], [288, 551, 7, 940], [288, 901, 7, 942], [288, 904, 133, 944, 558, 945, 341, 907, 343, 907, 7, 946], [288, 910, 7, 948], [], [288, 914, 7, 951], [], [288, 918, 7, 953], [], [52, 956, 595, 596, 50, 874, 288, 875, 7, 957], [288, 878, 7, 959], [288, 881, 7, 961], [288, 884, 7, 963], [7, 965], [288, 889, 7, 967], [], [288, 893, 7, 970], [288, 896, 7, 972], [288, 551, 7, 974], [288, 901, 7, 976], [288, 904, 133, 978, 558, 979, 341, 907, 343, 907, 7, 980], [288, 910, 7, 982], [], [288, 914, 7, 985], [], [288, 918, 7, 987], [], [52, 990, 595, 596, 50, 874, 288, 875, 7, 991], [288, 878, 7, 993], [288, 881, 7, 995], [288, 884, 7, 997], [7, 999], [288, 889, 7, 1001], [], [288, 893, 7, 1004], [288, 896, 7, 1006], [288, 551, 7, 1008], [288, 901, 7, 1010], [288, 904, 133, 1012, 558, 1013, 341, 907, 343, 907, 7, 1014], [288, 910, 7, 1016], [], [288, 914, 7, 1019], [], [288, 918, 7, 1021], [], [52, 1023, 595, 596, 50, 874, 288, 875, 7, 1024], [288, 878, 7, 1026], [288, 881, 7, 1028], [288, 884, 7, 1030], [7, 1032], [288, 889, 7, 1034], [], [288, 893, 7, 1037], [288, 896, 7, 1039], [288, 551, 7, 1041], [288, 901, 7, 1043], [288, 904, 133, 1045, 558, 1046, 341, 907, 343, 907, 7, 1047], [288, 910, 7, 1049], [], [288, 914, 7, 1052], [], [288, 918, 7, 1054], [], [288, 1057, 7, 1058], [288, 1060, 7, 1061], [288, 1063, 7, 1064], [288, -1, 7, 1066], [1068, 1069, 288, 1070, 7, 1071], [288, 1073, 7, 1074], [424, 14, 425, 426, 427, 428, 429, 1076, 288, 1077, 432, 433, 336, 337, 334, 460, 7, 1078], [438, 439, 440, 1080, 7, 1081], [288, 1073, 7, 1083], [], [288, 1086, 7, 1087], [288, 1089, 7, 1090], [1092, 1093, 7, 1094], [288, 1096, 7, 1097], [288, 1099, 7, 1100], [], [288, 1099, 7, 1103], [], [288, 1099, 7, 1106], [], [288, 1099, 7, 1109], [], [288, 1099, 7, 1112], [], [288, 1116, 7, 1117], [], [7, 1121], [], [288, 1099, 7, 1126], [], [288, 1099, 7, 1128], [288, 1099, 7, 1130], [7, 1133], [], [288, 1099, 7, 1136], [], [288, 1099, 7, 1139], [], [288, 1099, 7, 1142], [], [288, 1099, 7, 1145], [], [288, 1099, 7, 1148], [], [288, 1099, 7, 1151], [], [288, 1099, 7, 1154], [], [288, 1099, 7, 1157], [288, 1159, 7, 1160], [595, 596, 50, 874, 288, 1162, 52, 873, 7, 1163], [288, 1165, 7, 1166], [288, 1168, 7, 1169], [288, 1171, 7, 1172], [], [], [288, 1099, 7, 1175], [288, 1099, 7, 1177], [], [], [7, 1179], [], [288, 1099, 7, 1182], [], [288, 1099, 7, 1184], [288, 1099, 7, 1186], [7, 1188], [], [288, 1099, 7, 1191], [], [288, 1099, 7, 1194], [], [288, 1099, 7, 1197], [], [288, 1099, 7, 1200], [], [288, 1099, 7, 1203], [], [288, 1099, 7, 1206], [], [288, 1099, 7, 1209], [], [288, 1099, 7, 1212], [288, 1159, 7, 1214], [595, 596, 50, 874, 288, 1162, 52, 873, 7, 1216], [288, 1165, 7, 1218], [288, 1168, 7, 1220], [288, 1171, 7, 1222], [], [], [288, 1099, 7, 1224], [288, 1099, 7, 1226], [], [], [7, 1228], [], [288, 1099, 7, 1231], [], [288, 1099, 7, 1233], [288, 1099, 7, 1235], [7, 1237], [], [288, 1099, 7, 1240], [], [288, 1099, 7, 1243], [], [288, 1099, 7, 1246], [], [288, 1099, 7, 1249], [], [288, 1099, 7, 1252], [], [288, 1099, 7, 1255], [288, 1159, 7, 1257], [595, 596, 50, 874, 288, 1162, 52, 873, 7, 1259], [288, 1165, 7, 1261], [288, 1168, 7, 1263], [288, 1171, 7, 1265], [], [], [288, 1099, 7, 1267], [288, 1099, 7, 1269], [], [], [7, 1271], [], [288, 1099, 7, 1274], [], [288, 1099, 7, 1276], [288, 1099, 7, 1278], [7, 1280], [], [288, 1099, 7, 1283], [], [288, 1099, 7, 1286], [], [288, 1099, 7, 1289], [], [], [288, 1291, 7, 1292], [182, 1294, 7, 1295], [288, 1297, 7, 1298], [288, 1300, 7, 1301], [288, 1303, 7, 1304], [288, 1306, 7, 1307], [44, 532, 288, 1309, 7, 1310], [288, 1312, 7, 1313], [288, 735, 7, 1315], [288, 738, 7, 1317], [288, 741, 7, 1319], [], [288, 536, 7, 1322], [424, 14, 425, 426, 427, 428, 429, 1324, 288, 1325, 432, 433, 336, 337, 334, 585, 7, 1326], [438, 439, 440, 1328, 7, 1329], [288, 1331, 7, 1332], [7, 1334], [288, 1336, 7, 1337], [7, 1339], [288, 1341, 7, 1342], [288, 1344, 7, 1345], [1348, 1349, 288, 1350, 1351, 1352, 1353, 426, 1354, 14, 1355, -1, 190, 1356, 7, 1357], [7, 1359], [288, 1361, 7, 1362], [44, 532, 288, 1364, 7, 1365], [288, 1312, 7, 1367], [288, 735, 7, 1369], [288, 738, 7, 1371], [288, 741, 7, 1373], [], [288, 536, 7, 1376], [7, 1378], [288, 1380, 7, 1381], [288, 1383, 7, 1384], [288, 1386, 7, 1387], [288, 445, 7, 1389], [], [288, -1, 7, 1392], [], [44, 532, 288, 1395, 7, 1396], [288, 536, 7, 1398], [424, 14, 425, 426, 427, 428, 429, 1400, 288, 1401, 432, 433, 336, 337, 334, 585, 7, 1402], [438, 439, 440, 1404, 7, 1405], [288, 1407, 7, 1408], [288, 1410, 7, 1411], [288, 1413, 7, 1414], [288, 1416, 7, 1417], [288, 1419, 7, 1420], [288, -1, 7, 1422], [288, 1424, 52, 318, 190, 418, 7, 1425], [288, 421, 7, 1427], [424, 14, 425, 426, 427, 428, 429, 430, 288, 431, 432, 433, 336, 337, 334, 434, 7, 1429], [438, 439, 440, 441, 7, 1431], [288, 445, 7, 1433], [], [288, 1419, 7, 1435], [288, -1, 7, 1437], [288, 1424, 52, 453, 190, 418, 7, 1439], [288, 421, 7, 1441], [424, 14, 425, 426, 427, 428, 429, 458, 288, 459, 432, 433, 336, 337, 334, 460, 7, 1443], [438, 439, 440, 463, 7, 1445], [288, 445, 7, 1447], [], [288, 1419, 7, 1449], [288, -1, 7, 1451], [288, 1424, 52, 473, 190, 418, 7, 1453], [288, 421, 7, 1455], [424, 14, 425, 426, 427, 428, 429, 478, 288, 479, 432, 433, 336, 337, 334, 434, 7, 1457], [438, 439, 440, 482, 7, 1459], [288, 445, 7, 1461], [], [288, 1419, 7, 1463], [288, -1, 7, 1465], [288, 1424, 52, 492, 190, 418, 7, 1467], [288, 421, 7, 1469], [424, 14, 425, 426, 427, 428, 429, 497, 288, 498, 432, 433, 336, 337, 334, 460, 7, 1471], [438, 439, 440, 501, 7, 1473], [288, 445, 7, 1475], [], [288, 507, 7, 1477], [182, 1479, 44, 1480, 7, 1481], [], [138, -1, 133, 1484, 1485, 1486, 1487, 1488, 146, 147, 7, 1489], [], [1491, 1492, 424, 14, 190, 1493, 7, 1494], [133, 1496, 1497, 1498, 184, 1499, 7, 1500], [7, 1503], [1505, 1506, 182, 1507, 432, 1508, 190, 1509, 7, 1510], [], [133, 1512, 184, 1499, 7, 1513], [182, 1515, 184, 1499, 7, 1516], [], [133, 244, 7, 1519], [133, 247, 7, 1521], [133, 250, 7, 1523], [133, 253, 7, 1525], [133, 256, 7, 1527], [133, 259, 7, 1529], [133, 262, 7, 1531], [133, 265, 7, 1533], [133, 268, 7, 1535], [133, 271, 7, 1537], [133, 274, 7, 1539], [133, 277, 7, 1541], [133, 1543, 7, 1544], [133, 1546, 7, 1547], [190, 1550, 7, 1551], [1092, 1553, 190, 1554, 7, 1555], [190, 1557, 7, 1558], [50, 193, 52, 1560, 7, 1561], [190, 1554, 7, 1563], [190, 1557, 7, 1565], [50, 193, 52, 1560, 7, 1567]], "textValue": {"index": [541, 604], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [408, 442, 476, 506], "value": [1125, 1125, 1125, 1125]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 86, 119, 127, 135, 143, 163, 181, 185, 205, 219, 291, 309, 327, 345, 363, 431, 465, 495, 569, 577, 585, 593]}, "currentSourceURL": {"index": [168, 201, 263, 302, 320, 338, 356, 374], "value": [561, 561, 561, 905, 944, 978, 1012, 1045]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 407, 408, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 441, 442, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 505, 506, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 604, 606, 607, 608, 626, 627, 628, 630, 631], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 4226.640625], [8, 8, 1264, 4210.640625], [8, 8, 1264, 4210.640625], [8, 8, 1264, 4210.640625], [8, 8, 1264, 4210.640625], [8, 8, 1264, 4138.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 2506.640625], [8, 1640, 1264, 2506.640625], [8, 1640, 1264, 2506.640625], [8, 1640, 1264, 2506.640625], [8, 1640, 1264, 1472.328125], [8, 1640, 1264, 1472.328125], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 1282], [8, 1754, 1264, 1264], [8, 1754, 1264, 1264], [8, 1754, 1264, 1264], [8, 1754, 1264, 1264], [288.203125, 2034.203125, 704.609375, 703.59375], [559.96875, 2304.96875, 161.0625, 161.0625], [559.96875, 2576.734375, 161.0625, 161.0625], [559.96875, 2034.203125, 161.0625, 161.0625], [288.203125, 2304.96875, 161.0625, 161.0625], [288.203125, 2576.734375, 161.0625, 161.0625], [288.203125, 2034.203125, 161.0625, 161.0625], [831.75, 2304.96875, 161.0625, 161.0625], [831.75, 2576.734375, 161.0625, 161.0625], [831.75, 2034.203125, 161.0625, 161.0625], [8, 3018, 1264, 18], [8, 3018, 1264, 18], [8, 3018, 20, 16], [11, 3019.5, 13, 13], [28, 3018, 30.21875, 17], [28, 3018, 30.21875, 17], [8, 3036, 1264, 0], [8, 3036, 1264, 0], [8, 3036, 1264, 0], [8, 3036, 0, 0], [8, 3036, 1264, 76.328125], [8, 3036, 1264, 76.328125], [8, 3036, 1264, 55.328125], [8, 3036, 75.28125, 34.328125], [16, 3039, 59.28125, 15], [16, 3039, 59.28125, 15], [16, 3039, 59.28125, 15], [16, 3039, 59.28125, 15], [16, 3039, 59.28125, 15], [16, 3054, 59.28125, 13.328125], [37.3125, 3054, 16.65625, 13.328125], [37.765625, 3054.546875, 15.75, 12.234375], [8, 3070.328125, 1264, 21], [8, 3070.328125, 68.234375, 21], [16, 3073.328125, 52.234375, 15], [16, 3073.65625, 16.65625, 13.328125], [17.65625, 3074.484375, 13.34375, 11.671875], [32.65625, 3073.328125, 35.578125, 15], [32.65625, 3073.328125, 35.578125, 15], [8, 3091.328125, 1264, 21], [8, 3091.328125, 68.234375, 21], [16, 3094.328125, 52.234375, 15], [16, 3094.65625, 16.65625, 13.328125], [17.65625, 3095.484375, 13.34375, 11.671875], [32.65625, 3094.328125, 35.578125, 15], [32.65625, 3094.328125, 35.578125, 15], [8, 3112.328125, 1264, 1034.3125], [8, 3112.328125, 1264, 1034.3125], [8, 3112.328125, 1264, 114], [8, 3112.328125, 1264, 114], [8, 3112.328125, 1264, 114], [8, 3112.328125, 1264, 114], [8, 3112.328125, 1264, 96], [8, 3112.328125, 1264, 96], [8, 3112.328125, 96, 96], [8, 3208.328125, 1264, 18], [8, 3208.328125, 151.078125, 17], [8, 3226.328125, 1264, 772], [8, 3226.328125, 1264, 772], [8, 3226.328125, 1264, 0], [8, 3226.328125, 1264, 0], [8, 3226.328125, 1264, 772], [8, 3226.328125, 1264, 772], [8, 3226.328125, 1264, 18], [8, 3226.328125, 1264, 18], [8, 3226.328125, 1264, 18], [8, 3226.328125, 408.765625, 17], [8, 3244.328125, 1264, 506], [8, 3244.328125, 1264, 50], [8, 3244.328125, 1264, 50], [8, 3244.328125, 14, 16], [8.5, 3244.328125, 13, 16], [8, 3276.328125, 1264, 18], [8, 3276.328125, 86.640625, 17], [8, 3310.328125, 1264, 440], [8, 3310.328125, 1264, 440], [8, 3310.328125, 1264, 0], [8, 3310.328125, 1264, 0], [8, 3310.328125, 1264, 0], [8, 3310.328125, 1264, 0], [8, 3310.328125, 1264, 440], [8, 3310.328125, 1264, 440], [8, 3310.328125, 1264, 88], [8, 3310.328125, 1264, 88], [8, 3310.328125, 1264, 88], [8, 3310.328125, 1264, 88], [8, 3310.328125, 1264, 18], [8, 3310.328125, 1264, 18], [8, 3310.328125, 432.25, 17], [8, 3328.328125, 1264, 70], [8, 3328.328125, 1264, 34], [8, 3328.328125, 1264, 16], [8, 3328.328125, 1264, 16], [8, 3328.328125, 16, 16], [8, 3344.328125, 1264, 18], [8, 3344.328125, 78.203125, 17], [8, 3362.328125, 1264, 18], [8, 3362.328125, 5.328125, 17], [8, 3380.328125, 1264, 18], [8, 3380.328125, 8, 17], [8, 3398.328125, 1264, 88], [8, 3398.328125, 1264, 88], [8, 3398.328125, 1264, 88], [8, 3398.328125, 1264, 88], [8, 3398.328125, 1264, 18], [8, 3398.328125, 1264, 18], [8, 3398.328125, 456.84375, 17], [8, 3416.328125, 1264, 70], [8, 3416.328125, 1264, 34], [8, 3416.328125, 1264, 16], [8, 3416.328125, 1264, 16], [8, 3416.328125, 16, 16], [8, 3432.328125, 1264, 18], [8, 3432.328125, 107.5, 17], [8, 3450.328125, 1264, 18], [8, 3450.328125, 5.328125, 17], [8, 3468.328125, 1264, 18], [8, 3468.328125, 8, 17], [8, 3486.328125, 1264, 88], [8, 3486.328125, 1264, 88], [8, 3486.328125, 1264, 88], [8, 3486.328125, 1264, 88], [8, 3486.328125, 1264, 18], [8, 3486.328125, 1264, 18], [8, 3486.328125, 405.859375, 17], [8, 3504.328125, 1264, 70], [8, 3504.328125, 1264, 34], [8, 3504.328125, 1264, 16], [8, 3504.328125, 1264, 16], [8, 3504.328125, 16, 16], [8, 3520.328125, 1264, 18], [8, 3520.328125, 119.984375, 17], [8, 3538.328125, 1264, 18], [8, 3538.328125, 5.328125, 17], [8, 3556.328125, 1264, 18], [8, 3556.328125, 8, 17], [8, 3574.328125, 1264, 88], [8, 3574.328125, 1264, 88], [8, 3574.328125, 1264, 88], [8, 3574.328125, 1264, 88], [8, 3574.328125, 1264, 18], [8, 3574.328125, 1264, 18], [8, 3574.328125, 413.734375, 17], [8, 3592.328125, 1264, 70], [8, 3592.328125, 1264, 34], [8, 3592.328125, 1264, 16], [8, 3592.328125, 1264, 16], [8, 3592.328125, 16, 16], [8, 3608.328125, 1264, 18], [8, 3608.328125, 47.09375, 17], [8, 3626.328125, 1264, 18], [8, 3626.328125, 5.328125, 17], [8, 3644.328125, 1264, 18], [8, 3644.328125, 8, 17], [8, 3662.328125, 1264, 88], [8, 3662.328125, 1264, 88], [8, 3662.328125, 1264, 88], [8, 3662.328125, 1264, 88], [8, 3662.328125, 1264, 18], [8, 3662.328125, 1264, 18], [8, 3662.328125, 272.40625, 17], [8, 3680.328125, 1264, 70], [8, 3680.328125, 1264, 34], [8, 3680.328125, 1264, 16], [8, 3680.328125, 1264, 16], [8, 3680.328125, 16, 16], [8, 3696.328125, 1264, 18], [8, 3696.328125, 87.078125, 17], [8, 3714.328125, 1264, 18], [8, 3714.328125, 5.328125, 17], [8, 3732.328125, 1264, 18], [8, 3732.328125, 8, 17], [8, 3750.328125, 1264, 248], [8, 3750.328125, 1264, 34], [8, 3750.328125, 1264, 34], [8, 3750.328125, 1264, 34], [8, 3750.328125, 1264, 34], [8, 3750.328125, 1264, 16], [8, 3750.328125, 20, 16], [10, 3750.328125, 16, 16], [8, 3766.328125, 1264, 18], [8, 3766.328125, 49.765625, 17], [8, 3784.328125, 1264, 214], [8, 3784.328125, 1264, 214], [8, 3784.328125, 1264, 214], [8, 3784.328125, 1264, 214], [8, 3784.328125, 92.390625, 17], [8, 3784.328125, 92.390625, 17], [100.390625, 3784.328125, 95.0625, 17], [100.390625, 3784.328125, 95.0625, 17], [195.453125, 3784.328125, 77.296875, 17], [195.453125, 3784.328125, 77.296875, 17], [272.75, 3784.328125, 106.640625, 17], [272.75, 3784.328125, 106.640625, 17], [379.390625, 3784.328125, 36.890625, 17], [379.390625, 3784.328125, 36.890625, 17], [8, 3818.328125, 1264, 180], [48, 3818.328125, 1224, 54], [32, 3818.328125, 16, 18], [32, 3818.328125, 16, 17], [48, 3818.328125, 0, 17], [0, 3507, 0, 0], [48, 3818.328125, 1224, 53], [48, 3818.328125, 238.5, 17], [48, 3818.328125, 238.5, 17], [48, 3818.328125, 238.5, 17], [286.5, 3818.328125, 36.609375, 17], [286.5, 3818.328125, 36.609375, 17], [323.109375, 3818.328125, 96.859375, 17], [323.109375, 3818.328125, 96.859375, 17], [419.96875, 3818.328125, 77.3125, 17], [419.96875, 3818.328125, 77.3125, 17], [497.28125, 3818.328125, 100.859375, 17], [497.28125, 3818.328125, 100.859375, 17], [598.140625, 3818.328125, 86.203125, 17], [598.140625, 3818.328125, 86.203125, 17], [684.34375, 3818.328125, 105.265625, 17], [684.34375, 3818.328125, 105.265625, 17], [789.609375, 3818.328125, 91.078125, 17], [789.609375, 3818.328125, 91.078125, 17], [48, 3836.328125, 1224, 35], [48, 3836.328125, 1224, 35], [48, 3836.328125, 1224, 18], [48, 3836.328125, 1224, 18], [48, 3836.328125, 1224, 18], [48, 3836.328125, 1224, 18], [48, 3836.328125, 8, 17], [48, 3854.328125, 4, 17], [52, 3854.328125, 0, 17], [52, 3854.328125, 0, 17], [0, 3507, 0, 0], [48, 3872.328125, 1224, 54], [32, 3872.328125, 16, 18], [32, 3872.328125, 16, 17], [48, 3872.328125, 0, 17], [0, 3507, 0, 0], [48, 3872.328125, 1224, 53], [48, 3872.328125, 247.078125, 17], [48, 3872.328125, 247.078125, 17], [48, 3872.328125, 247.078125, 17], [295.078125, 3872.328125, 43.09375, 17], [295.078125, 3872.328125, 43.09375, 17], [338.171875, 3872.328125, 98.640625, 17], [338.171875, 3872.328125, 98.640625, 17], [436.8125, 3872.328125, 109.3125, 17], [436.8125, 3872.328125, 109.3125, 17], [546.125, 3872.328125, 103.0625, 17], [546.125, 3872.328125, 103.0625, 17], [649.1875, 3872.328125, 85.3125, 17], [649.1875, 3872.328125, 85.3125, 17], [734.5, 3872.328125, 144.421875, 17], [734.5, 3872.328125, 144.421875, 17], [878.921875, 3872.328125, 30.671875, 17], [878.921875, 3872.328125, 30.671875, 17], [48, 3890.328125, 1224, 35], [48, 3890.328125, 1224, 35], [48, 3890.328125, 1224, 18], [48, 3890.328125, 1224, 18], [48, 3890.328125, 1224, 18], [48, 3890.328125, 1224, 18], [48, 3890.328125, 8, 17], [48, 3908.328125, 4, 17], [52, 3908.328125, 0, 17], [52, 3908.328125, 0, 17], [0, 3507, 0, 0], [48, 3926.328125, 1224, 54], [32, 3926.328125, 16, 18], [32, 3926.328125, 16, 17], [48, 3926.328125, 0, 17], [0, 3507, 0, 0], [48, 3926.328125, 1224, 53], [48, 3926.328125, 148.421875, 17], [48, 3926.328125, 148.421875, 17], [48, 3926.328125, 148.421875, 17], [196.421875, 3926.328125, 35.984375, 17], [196.421875, 3926.328125, 35.984375, 17], [232.40625, 3926.328125, 79.984375, 17], [232.40625, 3926.328125, 79.984375, 17], [312.390625, 3926.328125, 107.078125, 17], [312.390625, 3926.328125, 107.078125, 17], [419.46875, 3926.328125, 97.75, 17], [419.46875, 3926.328125, 97.75, 17], [517.21875, 3926.328125, 135.5, 17], [517.21875, 3926.328125, 135.5, 17], [48, 3944.328125, 1224, 35], [48, 3944.328125, 1224, 35], [48, 3944.328125, 1224, 18], [48, 3944.328125, 1224, 18], [48, 3944.328125, 1224, 18], [48, 3944.328125, 1224, 18], [48, 3944.328125, 8, 17], [48, 3962.328125, 4, 17], [52, 3962.328125, 0, 17], [52, 3962.328125, 0, 17], [0, 3507, 0, 0], [48, 3980.328125, 1224, 18], [32, 3980.328125, 16, 18], [32, 3980.328125, 16, 17], [48, 3980.328125, 0, 17], [0, 3507, 0, 0], [48, 3980.328125, 377.265625, 17], [48, 3980.328125, 168.40625, 17], [48, 3980.328125, 168.40625, 17], [48, 3980.328125, 168.40625, 17], [216.40625, 3980.328125, 112.890625, 17], [216.40625, 3980.328125, 112.890625, 17], [329.296875, 3980.328125, 95.96875, 17], [329.296875, 3980.328125, 95.96875, 17], [425.265625, 3980.328125, 0, 17], [0, 3507, 0, 0], [8, 4014.328125, 1264, 0], [8, 4014.328125, 1264, 0], [8, 4014.328125, 1264, 132.3125], [8, 4014.328125, 1264, 132.3125], [8, 4014.328125, 1264, 132.3125], [8, 4014.328125, 1264, 37.65625], [8, 4014.328125, 168.65625, 37.65625], [16, 4017.328125, 152.65625, 15], [16, 4017.328125, 152.65625, 15], [16, 4017.328125, 152.65625, 15], [16, 4017.328125, 152.65625, 15], [16, 4017.328125, 152.65625, 15], [16, 4032.328125, 152.65625, 16.65625], [81.90625, 4032.328125, 20.828125, 16.65625], [86.0625, 4034.40625, 12.515625, 12.5], [8, 4051.984375, 1264, 94.65625], [8, 4051.984375, 1264, 94.65625], [8, 4051.984375, 1264, 94.65625], [8, 4051.984375, 1264, 94.65625], [8, 4051.984375, 1264, 94.65625], [8, 4051.984375, 1264, 94.65625], [8, 4051.984375, 182, 57.328125], [8, 4109.3125, 1264, 0], [8, 4109.3125, 1264, 37.328125], [8, 4110.640625, 189.359375, 36], [16, 4113.640625, 173.359375, 15], [16, 4113.640625, 173.359375, 15], [16, 4113.640625, 173.359375, 15], [16, 4113.640625, 173.359375, 15], [16, 4113.640625, 173.359375, 15], [16, 4128.640625, 173.359375, 15], [16, 4128.640625, 173.359375, 0], [16, 4128.640625, 173.359375, 0], [16, 4128.640625, 173.359375, 0], [16, 4128.640625, 173.359375, 0], [72.296875, 4128.640625, 41.5, 15], [72.296875, 4128.640625, 41.5, 15], [113.796875, 4128.640625, 19.265625, 15], [113.796875, 4128.640625, 19.265625, 15], [197.359375, 4109.3125, 36.828125, 22.65625], [205.359375, 4112.3125, 20.828125, 16.65625], [205.359375, 4112.3125, 20.828125, 16.65625], [209.609375, 4113.4375, 12.328125, 14.5], [8, 4146.640625, 1264, 0], [8, 4146.640625, 1264, 72], [8, 4146.640625, 1264, 72], [8, 4146.640625, 1264, 72], [8, 4146.640625, 1264, 18], [8, 4146.640625, 1264, 18], [8, 4146.640625, 1264, 18], [8, 4146.640625, 1264, 18], [8, 4146.640625, 20, 16], [9, 4146.640625, 18, 16], [28, 4146.640625, 39.109375, 17], [28, 4146.640625, 39.109375, 17], [8, 4164.640625, 1264, 18], [8, 4164.640625, 1264, 18], [8, 4164.640625, 1264, 18], [8, 4164.640625, 1264, 18], [8, 4164.640625, 20, 16], [10, 4164.640625, 16, 16], [28, 4164.640625, 57.765625, 17], [28, 4164.640625, 57.765625, 17], [8, 4182.640625, 1264, 18], [8, 4182.640625, 1264, 18], [8, 4182.640625, 1264, 18], [8, 4182.640625, 1264, 18], [8, 4182.640625, 20, 16], [9, 4182.640625, 18, 16], [28, 4182.640625, 77.46875, 17], [28, 4182.640625, 77.46875, 17], [8, 4200.640625, 1264, 18], [8, 4200.640625, 1264, 18], [8, 4200.640625, 1264, 18], [8, 4200.640625, 1264, 18], [8, 4200.640625, 20, 16], [10, 4200.640625, 15, 16], [28, 4200.640625, 64.4375, 17], [28, 4200.640625, 64.4375, 17], [8, 4218.640625, 1264, 0], [636, 0, 644, 34], [8, 4218.640625, 0, 0], [7, 4217.640625, 1, 1], [7, 4217.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 384, -1, -1, -1, -1, 396, -1, -1, 403, -1, 407, -1, -1, -1, -1, -1, -1, -1, -1, 448, -1, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, -1, -1, 487, -1, -1, -1, -1, -1, -1, -1, 506, -1, -1, -1, -1, -1, 521, -1, 525, -1, -1, -1, -1, -1, 541, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, 593, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 708, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 744, -1, -1, -1, -1, -1, -1, -1, -1, -1, 770, -1, -1, -1, -1, -1, -1, 770, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, 829, -1, -1, -1, -1, -1, -1, 849, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 892, -1, -1, -1, -1, -1, -1, 913, -1, 917, -1, 921, -1, -1, -1, -1, -1, -1, 935, -1, -1, -1, -1, -1, -1, 950, -1, 917, -1, 955, -1, -1, -1, -1, -1, -1, 969, -1, -1, -1, -1, -1, -1, 984, -1, 917, -1, 989, -1, -1, -1, -1, -1, -1, 1003, -1, -1, -1, -1, -1, -1, 1018, -1, 917, -1, 41, -1, -1, -1, -1, -1, -1, 1036, -1, -1, -1, -1, -1, -1, 1051, -1, 917, -1, 1056, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1085, -1, -1, -1, -1, -1, 1102, -1, 1105, -1, 1108, -1, 1111, -1, 1114, -1, -1, -1, 1124, -1, 1119, -1, -1, -1, 1135, -1, 1138, -1, 1141, -1, 1144, -1, 1147, -1, 1150, -1, 1153, -1, 1156, -1, -1, -1, -1, -1, -1, 921, 1174, -1, -1, 1119, -1, -1, 1181, -1, 1119, -1, -1, -1, 1190, -1, 1193, -1, 1196, -1, 1199, -1, 1202, -1, 1205, -1, 1208, -1, 1211, -1, -1, -1, -1, -1, -1, 921, 1174, -1, -1, 1119, -1, -1, 1230, -1, 1119, -1, -1, -1, 1239, -1, 1242, -1, 1245, -1, 1248, -1, 1251, -1, 1254, -1, -1, -1, -1, -1, -1, 921, 1174, -1, -1, 1119, -1, -1, 1273, -1, 1119, -1, -1, -1, 1282, -1, 1285, -1, 1288, -1, 1119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1321, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1375, -1, -1, -1, -1, -1, -1, 1391, -1, 1394, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 448, -1, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, -1, -1, 487, -1, -1, -1, -1, -1, -1, -1, 506, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 526, 532, 534]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 1, 1, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 13, 13, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 21, 21, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 2, 1, 25, 25, 26, 26, 27, 27, 28], "offsetRects": [[], [0, 0, 1280, 4227], [0, 0, 1264, 4211], [8, 8, 1264, 4211], [8, 8, 1264, 4211], [8, 8, 1264, 4211], [8, 8, 1264, 4139], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 2507], [8, 1640, 1264, 2507], [8, 1640, 1264, 2507], [8, 1640, 1264, 2507], [8, 1640, 1264, 1472], [8, 1640, 1264, 1472], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 1282], [8, 1754, 1264, 1264], [8, 1754, 1264, 1264], [8, 1754, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3018, 1264, 18], [8, 3018, 1264, 18], [8, 3018, 20, 16], [0, 0, 0, 0], [28, 3018, 30, 17], [], [8, 3036, 1264, 0], [8, 3036, 1264, 0], [8, 3036, 1264, 0], [8, 3036, 0, 0], [8, 3036, 1264, 76], [8, 3036, 1264, 76], [8, 3036, 1264, 55], [8, 3036, 75, 34], [16, 3039, 59, 15], [16, 3039, 59, 15], [16, 3039, 59, 15], [16, 3039, 59, 15], [], [16, 3054, 59, 13], [37, 3054, 17, 13], [0, 0, 0, 0], [8, 3070, 1264, 21], [8, 3070, 68, 21], [16, 3073, 52, 15], [16, 3074, 17, 13], [0, 0, 0, 0], [33, 3073, 36, 15], [], [8, 3091, 1264, 21], [8, 3091, 68, 21], [16, 3094, 52, 15], [16, 3095, 17, 13], [0, 0, 0, 0], [33, 3094, 36, 15], [], [8, 3112, 1264, 1034], [8, 3112, 1264, 1034], [8, 3112, 1264, 114], [8, 3112, 1264, 114], [8, 3112, 1264, 114], [8, 3112, 1264, 114], [8, 3112, 1264, 96], [8, 3112, 1264, 96], [8, 3112, 96, 96], [8, 3208, 1264, 18], [], [8, 3226, 1264, 772], [8, 3226, 1264, 772], [8, 3226, 1264, 0], [8, 3226, 1264, 0], [8, 3226, 1264, 772], [8, 3226, 1264, 772], [8, 3226, 1264, 18], [8, 3226, 1264, 18], [8, 3226, 1264, 18], [], [8, 3244, 1264, 506], [8, 3244, 1264, 50], [8, 3244, 1264, 50], [8, 3244, 14, 16], [0, 0, 0, 0], [8, 3276, 1264, 18], [], [8, 3310, 1264, 440], [8, 3310, 1264, 440], [8, 3310, 1264, 0], [8, 3310, 1264, 0], [8, 3310, 1264, 0], [8, 3310, 1264, 0], [8, 3310, 1264, 440], [8, 3310, 1264, 440], [8, 3310, 1264, 88], [8, 3310, 1264, 88], [8, 3310, 1264, 88], [8, 3310, 1264, 88], [8, 3310, 1264, 18], [8, 3310, 1264, 18], [], [8, 3328, 1264, 70], [8, 3328, 1264, 34], [8, 3328, 1264, 16], [8, 3328, 1264, 16], [8, 3328, 16, 16], [8, 3344, 1264, 18], [], [8, 3362, 1264, 18], [], [8, 3380, 1264, 18], [], [8, 3398, 1264, 88], [8, 3398, 1264, 88], [8, 3398, 1264, 88], [8, 3398, 1264, 88], [8, 3398, 1264, 18], [8, 3398, 1264, 18], [], [8, 3416, 1264, 70], [8, 3416, 1264, 34], [8, 3416, 1264, 16], [8, 3416, 1264, 16], [8, 3416, 16, 16], [8, 3432, 1264, 18], [], [8, 3450, 1264, 18], [], [8, 3468, 1264, 18], [], [8, 3486, 1264, 88], [8, 3486, 1264, 88], [8, 3486, 1264, 88], [8, 3486, 1264, 88], [8, 3486, 1264, 18], [8, 3486, 1264, 18], [], [8, 3504, 1264, 70], [8, 3504, 1264, 34], [8, 3504, 1264, 16], [8, 3504, 1264, 16], [8, 3504, 16, 16], [8, 3520, 1264, 18], [], [8, 3538, 1264, 18], [], [8, 3556, 1264, 18], [], [8, 3574, 1264, 88], [8, 3574, 1264, 88], [8, 3574, 1264, 88], [8, 3574, 1264, 88], [8, 3574, 1264, 18], [8, 3574, 1264, 18], [], [8, 3592, 1264, 70], [8, 3592, 1264, 34], [8, 3592, 1264, 16], [8, 3592, 1264, 16], [8, 3592, 16, 16], [8, 3608, 1264, 18], [], [8, 3626, 1264, 18], [], [8, 3644, 1264, 18], [], [8, 3662, 1264, 88], [8, 3662, 1264, 88], [8, 3662, 1264, 88], [8, 3662, 1264, 88], [8, 3662, 1264, 18], [8, 3662, 1264, 18], [], [8, 3680, 1264, 70], [8, 3680, 1264, 34], [8, 3680, 1264, 16], [8, 3680, 1264, 16], [8, 3680, 16, 16], [8, 3696, 1264, 18], [], [8, 3714, 1264, 18], [], [8, 3732, 1264, 18], [], [8, 3750, 1264, 248], [8, 3750, 1264, 34], [8, 3750, 1264, 34], [8, 3750, 1264, 34], [8, 3750, 1264, 34], [8, 3750, 1264, 16], [8, 3750, 20, 16], [0, 0, 0, 0], [8, 3766, 1264, 18], [], [8, 3784, 1264, 214], [8, 3784, 1264, 214], [8, 3784, 1264, 214], [8, 3784, 1264, 214], [8, 3784, 92, 17], [], [100, 3784, 95, 17], [], [195, 3784, 77, 17], [], [273, 3784, 107, 17], [], [379, 3784, 37, 17], [], [8, 3818, 1264, 180], [48, 3818, 1224, 54], [32, 3818, 16, 18], [32, 3818, 16, 18], [48, 3818, 0, 17], [], [48, 3818, 1224, 53], [48, 3818, 239, 17], [48, 3818, 239, 17], [], [287, 3818, 37, 17], [], [323, 3818, 97, 17], [], [420, 3818, 77, 17], [], [497, 3818, 101, 17], [], [598, 3818, 86, 17], [], [684, 3818, 105, 17], [], [790, 3818, 91, 17], [], [881, 3818, 1224, 53], [881, 3818, 1224, 53], [881, 3818, 1224, 53], [48, 3836, 1224, 18], [48, 3836, 1224, 18], [48, 3836, 1224, 18], [], [], [52, 3854, 0, 17], [52, 3854, 0, 17], [], [48, 3872, 1224, 54], [32, 3872, 16, 18], [32, 3872, 16, 18], [48, 3872, 0, 17], [], [48, 3872, 1224, 53], [48, 3872, 247, 17], [48, 3872, 247, 17], [], [295, 3872, 43, 17], [], [338, 3872, 99, 17], [], [437, 3872, 109, 17], [], [546, 3872, 103, 17], [], [649, 3872, 85, 17], [], [735, 3872, 144, 17], [], [879, 3872, 31, 17], [], [910, 3872, 1224, 53], [910, 3872, 1224, 53], [910, 3872, 1224, 53], [48, 3890, 1224, 18], [48, 3890, 1224, 18], [48, 3890, 1224, 18], [], [], [52, 3908, 0, 17], [52, 3908, 0, 17], [], [48, 3926, 1224, 54], [32, 3926, 16, 18], [32, 3926, 16, 18], [48, 3926, 0, 17], [], [48, 3926, 1224, 53], [48, 3926, 148, 17], [48, 3926, 148, 17], [], [196, 3926, 36, 17], [], [232, 3926, 80, 17], [], [312, 3926, 107, 17], [], [419, 3926, 98, 17], [], [517, 3926, 136, 17], [], [653, 3926, 1224, 53], [653, 3926, 1224, 53], [653, 3926, 1224, 53], [48, 3944, 1224, 18], [48, 3944, 1224, 18], [48, 3944, 1224, 18], [], [], [52, 3962, 0, 17], [52, 3962, 0, 17], [], [48, 3980, 1224, 18], [32, 3980, 16, 18], [32, 3980, 16, 18], [48, 3980, 0, 17], [], [48, 3980, 377, 17], [48, 3980, 168, 17], [48, 3980, 168, 17], [], [216, 3980, 113, 17], [], [329, 3980, 96, 17], [], [425, 3980, 0, 17], [], [8, 4014, 1264, 0], [8, 4014, 1264, 0], [8, 4014, 1264, 132], [8, 4014, 1264, 132], [8, 4014, 1264, 132], [8, 4014, 1264, 38], [8, 4014, 169, 38], [16, 4017, 153, 15], [16, 4017, 153, 15], [16, 4017, 153, 15], [16, 4017, 153, 15], [], [16, 4032, 153, 17], [82, 4032, 21, 17], [0, 0, 0, 0], [8, 4052, 1264, 95], [8, 4052, 1264, 95], [8, 4052, 1264, 95], [8, 4052, 1264, 95], [8, 4052, 1264, 95], [8, 4052, 1264, 95], [8, 4052, 182, 57], [8, 4109, 1264, 0], [8, 4109, 1264, 37], [8, 4111, 189, 36], [16, 4114, 173, 15], [16, 4114, 173, 15], [16, 4114, 173, 15], [16, 4114, 173, 15], [], [16, 4129, 173, 15], [16, 4129, 173, 0], [16, 4129, 173, 0], [16, 4129, 173, 0], [16, 4129, 173, 0], [72, 4129, 42, 15], [], [114, 4129, 19, 15], [], [197, 4109, 37, 23], [205, 4112, 21, 17], [205, 4112, 21, 17], [0, 0, 0, 0], [8, 4147, 1264, 0], [8, 4147, 1264, 72], [8, 4147, 1264, 72], [8, 4147, 1264, 72], [8, 4147, 1264, 18], [8, 4147, 1264, 18], [8, 4147, 1264, 18], [8, 4147, 1264, 18], [8, 4147, 20, 16], [0, 0, 0, 0], [28, 4147, 39, 17], [], [8, 4165, 1264, 18], [8, 4165, 1264, 18], [8, 4165, 1264, 18], [8, 4165, 1264, 18], [8, 4165, 20, 16], [0, 0, 0, 0], [28, 4165, 58, 17], [], [8, 4183, 1264, 18], [8, 4183, 1264, 18], [8, 4183, 1264, 18], [8, 4183, 1264, 18], [8, 4183, 20, 16], [0, 0, 0, 0], [28, 4183, 77, 17], [], [8, 4201, 1264, 18], [8, 4201, 1264, 18], [8, 4201, 1264, 18], [8, 4201, 1264, 18], [8, 4201, 20, 16], [0, 0, 0, 0], [28, 4201, 64, 17], [], [8, 4219, 1264, 0], [636, 0, 644, 34], [8, 4219, 0, 0], [7, 4218, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1280, 4227], [0, 3507, 1280, 4227], [0, 0, 1264, 4211], [0, 0, 1264, 4211], [0, 0, 1264, 4211], [0, 0, 1264, 4139], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 2507], [0, 0, 1264, 2507], [0, 0, 1264, 2507], [0, 0, 1264, 2507], [0, 0, 1264, 1472], [0, 0, 1264, 1472], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 1034], [0, 0, 1264, 1034], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 772], [0, 0, 1264, 772], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 772], [0, 0, 1264, 772], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 248], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 214], [0, 0, 1264, 214], [0, 0, 1264, 214], [0, 0, 1264, 214], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 180], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 18], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 132], [0, 0, 1264, 132], [0, 0, 1264, 132], [0, 0, 1264, 38], [0, 0, 165, 34], [0, 0, 153, 15], [0, 0, 153, 15], [0, 0, 153, 15], [0, 0, 0, 0], [], [0, 0, 153, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 642, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 4227], [0, 0, 1280, 720], [0, 0, 1264, 4211], [0, 0, 1264, 4211], [0, 0, 1264, 4211], [0, 0, 1264, 4139], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 2507], [0, 0, 1264, 2507], [0, 0, 1264, 2507], [0, 0, 1264, 2507], [0, 0, 1264, 1472], [0, 0, 1264, 1472], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 1034], [0, 0, 1264, 1034], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 772], [0, 0, 1264, 772], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 772], [0, 0, 1264, 772], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 248], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 214], [0, 0, 1264, 214], [0, 0, 1264, 214], [0, 0, 1264, 214], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 180], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 18], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 132], [0, 0, 1264, 132], [0, 0, 1264, 132], [0, 0, 1264, 38], [2, 2, 165, 34], [0, 0, 153, 15], [0, 0, 153, 15], [0, 0, 153, 15], [0, 0, 0, 0], [], [0, 0, 153, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 642, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 151, 164, 174, 181, 192, 202, 209, 224, 231, 233, 235, 242, 249, 251, 253, 260, 267, 269, 271, 278, 285, 287, 289, 296, 303, 305, 307, 317, 323, 325, 327, 329, 331, 335, 341, 343, 345, 347, 349, 351, 353, 355, 362, 363, 369, 375, 377, 379, 381, 383, 385, 387, 389, 396, 397, 403, 409, 411, 413, 415, 417, 419, 426, 427, 433, 439, 441, 443, 457, 475, 482, 484, 500, 508, 516, 524, 529], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [28, 3018, 30.21875, 17], [16, 3039, 59.28125, 15], [32.65625, 3073.328125, 35.578125, 15], [32.65625, 3094.328125, 35.578125, 15], [8, 3208.328125, 151.078125, 17], [8, 3226.328125, 408.765625, 17], [8, 3276.328125, 86.640625, 17], [8, 3310.328125, 432.25, 17], [8, 3344.328125, 78.203125, 17], [8, 3362.328125, 5.328125, 17], [8, 3380.328125, 8, 17], [8, 3398.328125, 456.84375, 17], [8, 3432.328125, 107.5, 17], [8, 3450.328125, 5.328125, 17], [8, 3468.328125, 8, 17], [8, 3486.328125, 405.859375, 17], [8, 3520.328125, 119.984375, 17], [8, 3538.328125, 5.328125, 17], [8, 3556.328125, 8, 17], [8, 3574.328125, 413.734375, 17], [8, 3608.328125, 47.09375, 17], [8, 3626.328125, 5.328125, 17], [8, 3644.328125, 8, 17], [8, 3662.328125, 272.40625, 17], [8, 3696.328125, 87.078125, 17], [8, 3714.328125, 5.328125, 17], [8, 3732.328125, 8, 17], [8, 3766.328125, 49.765625, 17], [8, 3784.328125, 92.390625, 17], [100.390625, 3784.328125, 95.0625, 17], [195.453125, 3784.328125, 77.296875, 17], [272.75, 3784.328125, 106.640625, 17], [379.390625, 3784.328125, 36.890625, 17], [32, 3818.328125, 16, 17], [48, 3818.328125, 238.5, 17], [286.5, 3818.328125, 36.609375, 17], [323.109375, 3818.328125, 96.859375, 17], [419.96875, 3818.328125, 77.3125, 17], [497.28125, 3818.328125, 100.859375, 17], [598.140625, 3818.328125, 86.203125, 17], [684.34375, 3818.328125, 105.265625, 17], [789.609375, 3818.328125, 91.078125, 17], [48, 3836.328125, 8, 17], [48, 3854.328125, 4, 17], [32, 3872.328125, 16, 17], [48, 3872.328125, 247.078125, 17], [295.078125, 3872.328125, 43.09375, 17], [338.171875, 3872.328125, 98.640625, 17], [436.8125, 3872.328125, 109.3125, 17], [546.125, 3872.328125, 103.0625, 17], [649.1875, 3872.328125, 85.3125, 17], [734.5, 3872.328125, 144.421875, 17], [878.921875, 3872.328125, 30.671875, 17], [48, 3890.328125, 8, 17], [48, 3908.328125, 4, 17], [32, 3926.328125, 16, 17], [48, 3926.328125, 148.421875, 17], [196.421875, 3926.328125, 35.984375, 17], [232.40625, 3926.328125, 79.984375, 17], [312.390625, 3926.328125, 107.078125, 17], [419.46875, 3926.328125, 97.75, 17], [517.21875, 3926.328125, 135.5, 17], [48, 3944.328125, 8, 17], [48, 3962.328125, 4, 17], [32, 3980.328125, 16, 17], [48, 3980.328125, 168.40625, 17], [216.40625, 3980.328125, 112.890625, 17], [329.296875, 3980.328125, 95.96875, 17], [16, 4017.328125, 152.65625, 15], [16, 4113.640625, 173.359375, 15], [72.296875, 4128.640625, 41.5, 15], [113.796875, 4128.640625, 19.265625, 15], [28, 4146.640625, 39.109375, 17], [28, 4164.640625, 57.765625, 17], [28, 4182.640625, 77.46875, 17], [28, 4200.640625, 64.4375, 17], [7, 4217.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 3, 9, 5, 5, 21, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 13, 15, 13, 16, 6, 3, 33, 6, 16, 13, 15, 14, 16, 14, 1, 1, 3, 31, 7, 16, 17, 16, 13, 23, 5, 1, 1, 3, 20, 6, 13, 16, 16, 22, 1, 1, 3, 23, 16, 14, 24, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 3507, "contentWidth": 1280, "contentHeight": 4227}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "989F1965F9D95FC4EB55A71D1284CB52", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "#text", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "type", "text/css", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "a8bde6f0-c791-4ab9", "", "px-sm py-sm default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 animate-in fade-in duration-500 ease-in-out border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "circle-half-stroke", "svg-inline--fa fa-circle-half-stroke fa-fw animate-spin text-super", "41d62912-c7c8-421a", "", "M448 256c0-106-86-192-192-192V448c106 0 192-86 192-192zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "0f42964f-e0f9-4fcb", "", "animate-in fade-in ease-out duration-300", "5179c955-09ae-4b67", "", "Here are some", "eb5109d8-22e1-4152", "", " easy breakfast", "4f54728f-8a12-4bb8", "", " recipes that", "cfff987f-ebb8-41fe", "", " require minimal", "018db1e5-ff31-4691", "", " time:", "OL", "list-decimal list-outside", "7521d548-3960-4933", "", "\n", "LI", "05bfc169-c4d9-42ff", "", "::marker", "1. ", "marker", "73521c16-c015-40d7", "", "3bb760c7-f2d1-4ae4", "", "75677ab0-4a6a-4823", "", "STRONG", "977e92ac-6111-4ede", "", "Sausage & Crescent Roll Casserole", "a15189cd-ec7d-437c", "", ": This", "88e61b45-f187-4d23", "", " tasty breakfast", "1478b0c0-c044-4ef7", "", " casserole is", "9a1cadf4-031e-40d1", "", " made with cres", "76394606-ac62-48dc", "", "cent rolls and", "9dacd335-fd49-4466", "", " can be prepared", "0365b3c7-c0f0-4a74", "", " ahead of time", "de22f270-947f-4abe", "", "whitespace-nowrap", "92f8a889-4c46-46aa", "", "citation ml-xs inline", "9f1af41e-bf1f-4512", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "963e53ed-aa6b-459d", "", "text-[0.60rem]", "2da264f7-2d71-44fb", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "60e8eee4-eaf8-455b", "", ".", "4cb7a784-df6a-4acd", "", "d0b9970f-2137-4476", "", "6659bfc7-e02a-4627", "", "2. ", "29333270-4c21-4e8b", "", "56da8963-bce5-4833", "", "876c0aec-aeff-4149", "", "19d9b8fd-6a66-429a", "", "Overnight Cherry-Almond Oatmeal", "78bb3db0-f4aa-4a5b", "", ": Place", "959a5cff-c570-4c85", "", " the ingredients", "bd418c66-ad76-4cc2", "", " in a slow cooker", "40c48014-932f-4efa", "", " before bed, and", "c6a81f17-2014-404b", "", " wake up to a", "9438724e-f1b1-4c52", "", " healthy and satisfying", "8f7ceaa6-b5ea-41f8", "", " dish", "274bddde-692b-460c", "", "287738ba-dd11-4892", "", "461c14bb-9e54-45f9", "", "f3cccfb7-6a98-4da5", "", "de79df75-719a-4c6d", "", "22e0fde9-e9f8-4f86", "", "98402675-ae63-428a", "", "21c1afde-d9ac-4780", "", "f0647b08-60f5-45ec", "", "3. ", "b0868f56-b16b-4714", "", "4ac50467-4777-4d33", "", "e65e2d00-a235-40b5", "", "f095f932-b0da-46eb", "", "Chorizo Salsa Omelet", "e9ffcaa8-2e66-4b6c", "", ": Jazz", "991deeed-e85e-4483", "", " up a basic o", "7fe6b6e7-895c-4e5c", "", "melet with a few", "b97acb21-435d-449c", "", " ingredients for", "29596457-4a29-4acc", "", " a delicious breakfast", "f3c7fe31-45ca-4dfc", "", "9c925b37-8e40-4057", "", "0afda04f-b479-4f02", "", "26aa487b-47c1-4ed7", "", "eb73973f-b08d-401f", "", "1a38b8c9-f54e-46fe", "", "6e345983-ffc9-44ee", "", "19b48bbc-44fa-41f3", "", "1a47d74e-5c22-4982", "", "4. ", "9f5cbbfe-2fa8-4a3d", "", "71191ee7-7a51-42ac", "", "678fc46f-2e6f-4c88", "", "53137e8a-72df-4701", "", "Berries in Yogurt Cream", "acb52a33-edad-4eff", "", ": Combine yogurt", "d6a36752-6eb1-4b41", "", ", cream, brown", "e073f130-5593-4afd", "", "pb-lg", "07755d30-62e1-4a1f", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "md:ml-md transition-all duration-300 animate-in zoom-in-75", "add4ab5c-9978-4f9b", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark hover:bg-superAlt hover:text-white font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "dfe84368-f85f-4dba", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "ff50a24c-482e-4753", "", "5ff2f27e-e80d-468e", "", "88d2788b-070c-4ba5", "", "017222ed-7256-43f8", "", "Stop generating response", "86c60d34-213e-491a", "", "stop", "svg-inline--fa fa-stop fa-fw fa-lg ", "e5ca6ecd-bec0-4b5a", "", "M0 64H384V448H0V64z", "ff961423-d901-4eb6", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 644px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-20-0.json b/demonstrations/ieckqwf/dom_snapshots/page-20-0.json new file mode 100644 index 0000000000000000000000000000000000000000..9ef0fa01a2a3f46adc75deff53f28b386c1aeec8 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-20-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 23, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 24, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 25, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 22, 671, 672, 673, 3, 674, 4, 675, 676, 677, 678, 5, 679, 680, 681, 6, 682, 683, 684, 685, 7, 686, 687, 688, 8, 689, 690, 691, 692, 9, 693, 694, 695, 10, 696, 697, 698, 699, 11, 700, 701, 12, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 13, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 14, 745, 746, 747, 748, 15, 749, 750, 751, 752, 753, 754, 755, 756, 757, 16, 758, 759, 760, 17, 761, 762, 763, 764, 765, 18, 766, 767, 768, 769, 770, 771, 772, 19, 773, 774, 775, 776, 777, 778, 779, 20, 780, 781, 782, 783, 784, 785, 786, 21, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 4119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 4119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 4119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 4119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 4119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "2793A2893B597C97F0DBA81A174255CD", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-25-0.json b/demonstrations/ieckqwf/dom_snapshots/page-25-0.json new file mode 100644 index 0000000000000000000000000000000000000000..d2a02badc8a869f177fe32d56af014fd7b250fb7 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-25-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 23, 673, 4, 674, 5, 675, 676, 677, 678, 6, 679, 680, 681, 7, 682, 683, 684, 685, 8, 686, 687, 688, 9, 689, 690, 691, 692, 10, 693, 694, 695, 11, 696, 697, 698, 699, 12, 700, 701, 13, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 14, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 15, 745, 746, 747, 748, 16, 749, 750, 751, 752, 753, 754, 755, 756, 757, 17, 758, 759, 760, 18, 761, 762, 763, 764, 765, 19, 766, 767, 768, 769, 770, 771, 772, 20, 773, 774, 775, 776, 777, 778, 779, 21, 780, 781, 782, 783, 784, 785, 786, 22, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "AB1702682C4286E1D8DEC65D68664AE3", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-28-0.json b/demonstrations/ieckqwf/dom_snapshots/page-28-0.json new file mode 100644 index 0000000000000000000000000000000000000000..2c5b082ab31f16efdbdbff4ec25500b87df8fedb --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-28-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 4, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 5, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 25, 673, 6, 674, 7, 675, 676, 677, 678, 8, 679, 680, 681, 9, 682, 683, 684, 685, 10, 686, 687, 688, 11, 689, 690, 691, 692, 12, 693, 694, 695, 13, 696, 697, 698, 699, 14, 700, 701, 15, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 16, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 17, 745, 746, 747, 748, 18, 749, 750, 751, 752, 753, 754, 755, 756, 757, 19, 758, 759, 760, 20, 761, 762, 763, 764, 765, 21, 766, 767, 768, 769, 770, 771, 772, 22, 773, 774, 775, 776, 777, 778, 779, 23, 780, 781, 782, 783, 784, 785, 786, 24, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "CCBC4679C2530BCCD2FF8B6DEB3DAE12", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-32-0.json b/demonstrations/ieckqwf/dom_snapshots/page-32-0.json new file mode 100644 index 0000000000000000000000000000000000000000..6449e6242fd73c452b3ac023550e9a4516b86221 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-32-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 23, 673, 4, 674, 5, 675, 676, 677, 678, 6, 679, 680, 681, 7, 682, 683, 684, 685, 8, 686, 687, 688, 9, 689, 690, 691, 692, 10, 693, 694, 695, 11, 696, 697, 698, 699, 12, 700, 701, 13, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 14, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 15, 745, 746, 747, 748, 16, 749, 750, 751, 752, 753, 754, 755, 756, 757, 17, 758, 759, 760, 18, 761, 762, 763, 764, 765, 19, 766, 767, 768, 769, 770, 771, 772, 20, 773, 774, 775, 776, 777, 778, 779, 21, 780, 781, 782, 783, 784, 785, 786, 22, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "C5B9EE5EACCE526D44987069F6213557", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-34-0.json b/demonstrations/ieckqwf/dom_snapshots/page-34-0.json new file mode 100644 index 0000000000000000000000000000000000000000..d4c133595abf9b7ee9dfa188ed32212a9dae3363 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-34-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 23, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 24, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 25, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 22, 671, 672, 673, 3, 674, 4, 675, 676, 677, 678, 5, 679, 680, 681, 6, 682, 683, 684, 685, 7, 686, 687, 688, 8, 689, 690, 691, 692, 9, 693, 694, 695, 10, 696, 697, 698, 699, 11, 700, 701, 12, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 13, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 14, 745, 746, 747, 748, 15, 749, 750, 751, 752, 753, 754, 755, 756, 757, 16, 758, 759, 760, 17, 761, 762, 763, 764, 765, 18, 766, 767, 768, 769, 770, 771, 772, 19, 773, 774, 775, 776, 777, 778, 779, 20, 780, 781, 782, 783, 784, 785, 786, 21, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 4119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 4119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 4119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 4119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 4119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "62668EDCDC0E3C25F66EBC86260AF7A8", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-35-0.json b/demonstrations/ieckqwf/dom_snapshots/page-35-0.json new file mode 100644 index 0000000000000000000000000000000000000000..8d22bb75464b45587a2692698aaa7ecbee4ec4e6 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-35-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 23, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 24, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 25, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 22, 671, 672, 673, 3, 674, 4, 675, 676, 677, 678, 5, 679, 680, 681, 6, 682, 683, 684, 685, 7, 686, 687, 688, 8, 689, 690, 691, 692, 9, 693, 694, 695, 10, 696, 697, 698, 699, 11, 700, 701, 12, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 13, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 14, 745, 746, 747, 748, 15, 749, 750, 751, 752, 753, 754, 755, 756, 757, 16, 758, 759, 760, 17, 761, 762, 763, 764, 765, 18, 766, 767, 768, 769, 770, 771, 772, 19, 773, 774, 775, 776, 777, 778, 779, 20, 780, 781, 782, 783, 784, 785, 786, 21, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 4119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 4119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 4119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 4119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 4119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "D4B65C6F5A902F73E26B4D5CC7E05CC5", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-37-0.json b/demonstrations/ieckqwf/dom_snapshots/page-37-0.json new file mode 100644 index 0000000000000000000000000000000000000000..ff8481d136767537282fd9996217722e0df98ca6 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-37-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 4, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 5, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 25, 673, 6, 674, 7, 675, 676, 677, 678, 8, 679, 680, 681, 9, 682, 683, 684, 685, 10, 686, 687, 688, 11, 689, 690, 691, 692, 12, 693, 694, 695, 13, 696, 697, 698, 699, 14, 700, 701, 15, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 16, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 17, 745, 746, 747, 748, 18, 749, 750, 751, 752, 753, 754, 755, 756, 757, 19, 758, 759, 760, 20, 761, 762, 763, 764, 765, 21, 766, 767, 768, 769, 770, 771, 772, 22, 773, 774, 775, 776, 777, 778, 779, 23, 780, 781, 782, 783, 784, 785, 786, 24, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "7DE7C6605FE7C1C9963EAA67910F2ABA", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-42-0.json b/demonstrations/ieckqwf/dom_snapshots/page-42-0.json new file mode 100644 index 0000000000000000000000000000000000000000..0d9a00d8401cce057e93db779686f2395d4b6647 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-42-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 3, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 4, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 25, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 24, 671, 672, 673, 5, 674, 6, 675, 676, 677, 678, 7, 679, 680, 681, 8, 682, 683, 684, 685, 9, 686, 687, 688, 10, 689, 690, 691, 692, 11, 693, 694, 695, 12, 696, 697, 698, 699, 13, 700, 701, 14, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 15, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 16, 745, 746, 747, 748, 17, 749, 750, 751, 752, 753, 754, 755, 756, 757, 18, 758, 759, 760, 19, 761, 762, 763, 764, 765, 20, 766, 767, 768, 769, 770, 771, 772, 21, 773, 774, 775, 776, 777, 778, 779, 22, 780, 781, 782, 783, 784, 785, 786, 23, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 4119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 4119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 4119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 4119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 4119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 4119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 4119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 4119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 4119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 4119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 4119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 4119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 4119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 4119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "5369A76ADDC8DA3ECDF1F0EC3B8C0A6D", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-44-0.json b/demonstrations/ieckqwf/dom_snapshots/page-44-0.json new file mode 100644 index 0000000000000000000000000000000000000000..e819f6edab8506bf10cc2bc8a189f90427d9fd1b --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-44-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 23, 673, 4, 674, 5, 675, 676, 677, 678, 6, 679, 680, 681, 7, 682, 683, 684, 685, 8, 686, 687, 688, 9, 689, 690, 691, 692, 10, 693, 694, 695, 11, 696, 697, 698, 699, 12, 700, 701, 13, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 14, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 15, 745, 746, 747, 748, 16, 749, 750, 751, 752, 753, 754, 755, 756, 757, 17, 758, 759, 760, 18, 761, 762, 763, 764, 765, 19, 766, 767, 768, 769, 770, 771, 772, 20, 773, 774, 775, 776, 777, 778, 779, 21, 780, 781, 782, 783, 784, 785, 786, 22, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "B57DBEF4E79D69B72065A818EE938D75", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-45-0.json b/demonstrations/ieckqwf/dom_snapshots/page-45-0.json new file mode 100644 index 0000000000000000000000000000000000000000..1b1258764e94e43059fea1e20e81f5c0c2617def --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-45-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 3, 672, 23, 673, 4, 674, 5, 675, 676, 677, 678, 6, 679, 680, 681, 7, 682, 683, 684, 685, 8, 686, 687, 688, 9, 689, 690, 691, 692, 10, 693, 694, 695, 11, 696, 697, 698, 699, 12, 700, 701, 13, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 14, 734, 735, 736, 737, 738, 739, 740, 741, 2, 742, 743, 744, 15, 745, 746, 747, 748, 16, 749, 750, 751, 752, 753, 754, 755, 756, 757, 17, 758, 759, 760, 18, 761, 762, 763, 764, 765, 19, 766, 767, 768, 769, 770, 771, 772, 20, 773, 774, 775, 776, 777, 778, 779, 21, 780, 781, 782, 783, 784, 785, 786, 22, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5119, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5119, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5119, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5119, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5119, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5119, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5119, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5119, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5119, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5119, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5119, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5119, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5119, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5119, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "5A4DC7260F650BA1538370D8A316D2E1", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-7-0.json b/demonstrations/ieckqwf/dom_snapshots/page-7-0.json new file mode 100644 index 0000000000000000000000000000000000000000..62f5409ac736c7a34645f25821c1ba68a35258b6 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-7-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 5, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 6, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 3, 7, 27, 674, 8, 675, 9, 676, 677, 678, 679, 10, 680, 681, 682, 11, 683, 684, 685, 686, 12, 687, 688, 689, 13, 690, 691, 692, 693, 14, 694, 695, 696, 15, 697, 698, 699, 700, 16, 701, 702, 17, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 18, 735, 736, 737, 738, 739, 740, 741, 742, 2, 743, 744, 745, 19, 746, 747, 748, 749, 20, 750, 751, 752, 753, 754, 755, 756, 757, 758, 21, 759, 760, 761, 22, 762, 763, 764, 765, 766, 23, 767, 768, 769, 770, 771, 772, 773, 24, 774, 775, 776, 777, 778, 779, 780, 25, 781, 782, 783, 784, 785, 786, 787, 26, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.234375], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 5137, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 5137, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 5137, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 5137, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 5137, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 5137, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 5137, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 5137, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 5137, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 5137, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 5137, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 5137, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 5137, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 5137, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 5137, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 5137, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 5137, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 5137, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 5137, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 5137, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 5137, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 5137, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 5137, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "03818DB2AD5118DC95A7DB931EEF5E50", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/dom_snapshots/page-9-0.json b/demonstrations/ieckqwf/dom_snapshots/page-9-0.json new file mode 100644 index 0000000000000000000000000000000000000000..2b8e8941fb08fa7a9b43e8b36268e165b6017a89 --- /dev/null +++ b/demonstrations/ieckqwf/dom_snapshots/page-9-0.json @@ -0,0 +1 @@ +{"documents": [{"documentURL": 0, "title": 1, "baseURL": 0, "contentLanguage": -1, "encodingName": 2, "publicId": -1, "systemId": -1, "frameId": 3, "nodes": {"parentIndex": [-1, 0, 1, 2, 3, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 46, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 95, 90, 105, 106, 86, 108, 109, 110, 111, 110, 113, 114, 113, 116, 86, 118, 119, 120, 121, 122, 123, 122, 125, 118, 127, 128, 129, 130, 131, 130, 133, 118, 135, 136, 137, 138, 139, 138, 141, 118, 143, 144, 145, 146, 147, 146, 149, 86, 85, 152, 153, 154, 155, 153, 157, 153, 159, 160, 161, 162, 163, 152, 165, 166, 167, 168, 169, 167, 171, 172, 173, 152, 175, 176, 177, 178, 179, 178, 181, 175, 183, 184, 185, 175, 187, 188, 189, 81, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 200, 204, 198, 206, 207, 208, 209, 210, 208, 212, 196, 214, 215, 216, 217, 217, 219, 219, 219, 219, 219, 219, 219, 219, 219, 214, 229, 230, 231, 230, 233, 196, 235, 236, 237, 238, 196, 240, 241, 242, 243, 244, 245, 240, 247, 248, 249, 250, 251, 252, 253, 249, 255, 256, 248, 258, 259, 260, 261, 260, 263, 247, 265, 266, 267, 268, 267, 270, 194, 272, 273, 274, 275, 276, 277, 278, 279, 277, 281, 275, 283, 284, 285, 286, 287, 285, 289, 273, 291, 292, 292, 292, 295, 296, 297, 298, 299, 296, 301, 302, 303, 304, 303, 306, 301, 308, 309, 310, 311, 310, 309, 314, 315, 316, 317, 318, 319, 320, 321, 319, 323, 324, 325, 326, 324, 328, 323, 330, 323, 332, 315, 334, 335, 336, 337, 338, 339, 337, 341, 342, 343, 344, 342, 346, 341, 348, 341, 350, 315, 352, 353, 354, 355, 356, 357, 355, 359, 360, 361, 362, 360, 364, 359, 366, 359, 368, 315, 370, 371, 372, 373, 374, 375, 373, 377, 378, 379, 380, 378, 382, 377, 384, 377, 386, 315, 388, 389, 390, 391, 392, 393, 391, 395, 396, 397, 398, 396, 400, 395, 402, 395, 404, 296, 406, 407, 408, 409, 410, 411, 412, 410, 414, 406, 416, 417, 418, 419, 420, 419, 419, 423, 423, 425, 425, 427, 425, 429, 430, 431, 429, 433, 429, 435, 436, 437, 438, 439, 440, 436, 429, 425, 444, 423, 423, 447, 447, 449, 447, 451, 452, 453, 451, 455, 451, 457, 458, 459, 460, 461, 462, 458, 451, 447, 466, 423, 423, 469, 469, 471, 469, 473, 474, 475, 473, 477, 473, 479, 480, 481, 482, 483, 484, 480, 473, 469, 488, 423, 423, 491, 491, 493, 491, 495, 496, 497, 495, 499, 495, 501, 502, 503, 504, 505, 506, 502, 495, 491, 510, 423, 423, 513, 513, 515, 513, 517, 518, 519, 517, 521, 517, 523, 524, 525, 526, 527, 528, 524, 517, 513, 532, 423, 423, 535, 535, 537, 535, 539, 540, 541, 539, 543, 539, 545, 546, 547, 548, 549, 550, 546, 539, 535, 554, 423, 423, 557, 557, 559, 557, 561, 562, 563, 561, 565, 561, 567, 568, 569, 570, 571, 572, 568, 561, 557, 576, 423, 423, 579, 579, 581, 579, 583, 584, 585, 583, 587, 583, 589, 590, 591, 592, 593, 594, 590, 583, 579, 598, 423, 423, 601, 601, 603, 601, 605, 606, 607, 605, 609, 605, 611, 612, 613, 614, 615, 616, 612, 605, 601, 620, 423, 423, 623, 623, 625, 623, 627, 628, 629, 627, 631, 627, 633, 634, 635, 636, 637, 638, 634, 627, 623, 642, 423, 419, 419, 646, 418, 648, 648, 648, 648, 406, 653, 654, 655, 656, 657, 658, 654, 660, 661, 653, 663, 664, 665, 666, 667, 663, 669, 670, 653, 672, 673, 674, 675, 676, 672, 678, 679, 653, 681, 682, 683, 684, 685, 681, 687, 688, 296, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 697, 701, 693, 703, 704, 705, 704, 707, 708, 703, 710, 711, 710, 713, 714, 703, 716, 717, 716, 719, 720, 273, 273, 723, 724, 725, 726, 727, 728, 729, 730, 731, 731, 731, 734, 735, 736, 737, 738, 739, 735, 741, 742, 743, 744, 741, 746, 741, 748, 734, 750, 751, 752, 723, 80, 755, 756, 757, 758, 759, 760, 761, 762, 761, 764, 757, 766, 767, 768, 769, 770, 769, 772, 757, 774, 775, 776, 777, 778, 777, 780, 757, 782, 783, 784, 785, 786, 785, 788, 756, 77, 791, 77, 77, 77, 77, 77, 797, 798, 77, 77, 801, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 817, 818, 819, 819, 818, 822], "nodeType": [9, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 3, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 3, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "shadowRootType": {"index": [], "value": []}, "nodeName": [4, 5, 6, 12, 17, 12, 12, 12, 27, 17, 30, 30, 30, 30, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 30, 30, 135, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, 17, 52, 52, 200, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 12, 17, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 283, 286, 290, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 286, 286, 17, 286, 286, 286, 286, 17, 286, 286, 17, 286, 17, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 17, 286, 17, 286, 286, 534, 286, 447, 17, 319, 286, 286, 286, 286, 560, 286, 286, 286, 17, 286, 286, 534, 286, 336, 440, 447, 17, 319, 286, 336, 440, 319, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 319, 286, 336, 343, 336, 353, 353, 353, 353, 353, 353, 353, 353, 353, 319, 286, 336, 440, 447, 17, 286, 286, 286, 447, 17, 286, 286, 286, 534, 286, 336, 440, 286, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 534, 286, 336, 440, 447, 17, 286, 534, 286, 336, 440, 447, 17, 286, 286, 286, 286, 286, 286, 286, 286, 560, 286, 17, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 286, 286, 286, 286, 286, 17, 286, 286, 286, 336, 440, 901, 17, 286, 286, 286, 286, 286, 286, 286, 286, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 319, 286, 286, 286, 286, 286, 17, 286, 286, 286, 286, 560, 286, 17, 286, 17, 286, 17, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 286, 447, 17, 17, 1158, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 1162, 1165, 447, 17, 447, 447, 1174, 17, 447, 17, 447, 447, 319, 286, 447, 286, 17, 17, 447, 447, 17, 17, 17, 447, 17, 286, 560, 560, 560, 560, 286, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 534, 286, 286, 286, 447, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 336, 440, 286, 17, 286, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 17, 286, 336, 440, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 1688, 286, 286, 534, 286, 286, 286, 447, 17, 286, 286, 286, 286, 286, 447, 17, 447, 17, 534, 286, 336, 440, 286, 286, 286, 286, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 286, 319, 286, 336, 440, 447, 17, 286, 135, 17, 135, 17, 1688, 135, 1843, 901, 17, 135, 135, 17, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 1890, 286, 286, 52, 286, 286, 52], "nodeValue": [-1, -1, -1, -1, 18, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, 1157, -1, -1, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, -1, -1, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, 1157, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, 1824, -1, 1157, -1, -1, -1, -1, 1, -1, -1, 1859, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], "backendNodeId": [1, 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, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 3, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 2, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 4, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824], "attributes": [[], [], [7, 8], [13, 14, 7, 15], [], [19, 20, 7, 21], [19, 20, 7, 23], [19, 20, 7, 25], [7, 28], [], [31, 32, 7, 33], [35, 36, 37, 38, 7, 39], [35, 41, 37, 42, 7, 43], [35, 45, 37, 46, 7, 47], [13, 14, 7, 49], [], [53, 54, 55, 56, 7, 57], [53, 54, 13, 59, 60, 61, 55, 62, 7, 63], [53, 54, 13, 59, 60, 65, 55, 66, 7, 67], [53, 54, 13, 59, 60, 69, 55, 70, 7, 71], [53, 73, 60, 74, 55, 75, 7, 76], [53, 73, 60, 78, 55, 79, 7, 80], [53, 73, 60, 82, 55, 83, 7, 84], [53, 73, 60, 86, 55, 87, 7, 88], [53, 73, 60, 90, 55, 91, 7, 92], [53, 73, 60, 94, 55, 95, 7, 96], [53, 73, 60, 98, 55, 99, 7, 100], [53, 73, 60, 102, 55, 103, 7, 104], [53, 73, 60, 106, 55, 107, 7, 108], [53, 54, 13, 59, 60, 110, 55, 111, 7, 112], [53, 114, 13, 115, 55, 116, 117, 118, 7, 119], [53, 121, 55, 122, 7, 123], [35, 125, 37, 126, 127, 128, 7, 129], [35, 125, 37, 131, 127, 132, 7, 133], [136, 137, 138, 139, 140, -1, 141, -1, 7, 142], [53, 144, 55, 145, 146, 147, 13, 148, 149, 150, 151, 152, 7, 153], [53, 144, 55, 155, 146, 147, 13, 148, 149, 150, 151, 152, 7, 156], [53, 144, 55, 158, 146, 147, 13, 148, 149, 150, 151, 152, 7, 159], [53, 144, 55, 161, 146, 147, 13, 148, 149, 150, 151, 152, 7, 162], [53, 144, 55, 164, 146, 147, 13, 148, 149, 150, 151, 152, 7, 165], [53, 144, 55, 167, 146, 147, 13, 148, 149, 150, 151, 152, 7, 168], [53, 144, 55, 170, 146, 147, 13, 148, 149, 150, 151, 152, 7, 171], [53, 144, 55, 173, 146, 147, 13, 148, 149, 150, 151, 152, 7, 174], [53, 144, 55, 176, 146, 147, 13, 148, 149, 150, 151, 152, 7, 177], [53, 144, 55, 179, 146, 147, 13, 148, 149, 150, 151, 152, 7, 180], [53, 144, 55, 182, 146, 147, 13, 148, 149, 150, 151, 152, 7, 183], [185, 186, 187, 188, 7, 189], [], [53, 144, 55, 192, 146, 193, 7, 194], [53, 196, 55, 192, 197, -1, 7, 198], [201, -1, 7, 202], [141, -1, 204, -1, 136, 205, 7, 206], [136, 208, 141, -1, 7, 209], [136, 211, 141, -1, 7, 212], [136, 214, 141, -1, 7, 215], [136, 217, 141, -1, 7, 218], [136, 220, 141, -1, 7, 221], [136, 223, 141, -1, 7, 224], [136, 226, 141, -1, 7, 227], [136, 229, 141, -1, 7, 230], [136, 232, 141, -1, 7, 233], [136, 235, 141, -1, 7, 236], [136, 238, 141, -1, 7, 239], [185, 241, 7, 242], [], [146, 245, 53, 246, 55, 247, 7, 248], [146, 245, 53, 246, 55, 250, 7, 251], [146, 245, 53, 246, 55, 253, 7, 254], [146, 245, 53, 246, 55, 256, 7, 257], [146, 245, 53, 246, 55, 259, 7, 260], [146, 245, 53, 246, 55, 262, 7, 263], [146, 245, 53, 246, 55, 265, 7, 266], [146, 245, 53, 246, 55, 268, 7, 269], [146, 245, 53, 246, 55, 271, 7, 272], [146, 245, 53, 246, 55, 274, 7, 275], [146, 245, 53, 246, 55, 277, 7, 278], [146, 245, 53, 246, 55, 280, 7, 281], [7, 284], [185, 287, 7, 288], [291, 292, 7, 293], [291, 295, 7, 296], [291, 298, 7, 299], [291, 301, 7, 302], [291, 304, 7, 305], [291, 307, 7, 308], [291, 310, 7, 311], [291, 313, 7, 314], [291, 316, 7, 317], [291, 320, 55, 321, 7, 322], [291, 324, 7, 325], [291, 327, 7, 328], [291, 330, 7, 331], [291, 333, 7, 334], [337, 338, 339, 340, 7, 341], [344, 345, 346, 345, 291, 347, 7, 348], [291, 350, 7, 351], [354, 355, 356, 357, 358, 359, 7, 360], [354, 355, 356, 362, 358, 359, 7, 363], [354, 355, 356, 365, 358, 359, 7, 366], [354, 365, 356, 357, 358, 359, 7, 368], [354, 365, 356, 362, 358, 359, 7, 370], [354, 365, 356, 365, 358, 359, 7, 372], [354, 374, 356, 357, 358, 359, 7, 375], [354, 374, 356, 362, 358, 359, 7, 377], [354, 374, 356, 365, 358, 359, 7, 379], [291, 381, 7, 382], [291, 384, 7, 385], [], [291, 388, 7, 389], [7, 391], [291, 393, 7, 394], [291, 396, 7, 397], [], [291, 400, 7, 401], [291, 403, 7, 404], [], [291, 407, 7, 408], [], [291, 411, 7, 412], [291, 414, 7, 415], [291, 417, 7, 418], [291, 420, 55, 321, 193, 421, 7, 422], [291, 424, 7, 425], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 438], [441, 442, 443, 444, 7, 445], [291, 448, 7, 449], [], [291, 414, 7, 452], [291, 417, 7, 454], [291, 420, 55, 456, 193, 421, 7, 457], [291, 424, 7, 459], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 464], [441, 442, 443, 466, 7, 467], [291, 448, 7, 469], [], [291, 414, 7, 472], [291, 417, 7, 474], [291, 420, 55, 476, 193, 421, 7, 477], [291, 424, 7, 479], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 483], [441, 442, 443, 485, 7, 486], [291, 448, 7, 488], [], [291, 414, 7, 491], [291, 417, 7, 493], [291, 420, 55, 495, 193, 421, 7, 496], [291, 424, 7, 498], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 502], [441, 442, 443, 504, 7, 505], [291, 448, 7, 507], [], [291, 510, 7, 511], [291, 513, 7, 514], [291, 516, 7, 517], [7, 519], [291, 521, 7, 522], [], [291, 525, 7, 526], [], [291, 529, 7, 530], [7, 532], [13, 535, 291, 536, 7, 537], [291, 539, 7, 540], [291, 448, 7, 542], [], [55, 545, 7, 546], [291, 548, 7, 549], [291, 551, 7, 552], [291, 554, 7, 555], [291, 557, 7, 558], [561, 562, 291, 563, 136, 564, 7, 565], [7, 567], [291, 569, 7, 570], [291, 572, 7, 573], [], [291, 576, 7, 577], [7, 579], [13, 535, 291, 581, 7, 582], [291, 539, 7, 584], [427, 20, 428, 429, 430, 431, 432, 586, 291, 587, 435, 436, 339, 340, 337, 588, 7, 589], [441, 442, 443, 591, 7, 592], [291, 448, 7, 594], [], [291, 597, 598, 599, 55, 600, 193, 421, 7, 601], [291, 539, 7, 603], [427, 20, 428, 429, 430, 605, 432, 606, 291, 607, 435, 436, 339, 340, 337, 463, 7, 608], [441, 442, 443, 610, 7, 611], [291, 597, 598, 599, 55, 613, 193, 421, 7, 614], [291, 539, 7, 616], [427, 20, 428, 429, 430, 605, 432, 618, 291, 619, 435, 436, 339, 340, 337, 620, 7, 621], [441, 442, 443, 623, 7, 624], [291, 626, 7, 627], [291, 629, 7, 630], [291, 632, 7, 633], [291, 635, 7, 636], [291, 638, 7, 639], [291, 641, 7, 642], [291, 644, 7, 645], [291, 647, 7, 648], [291, 650, 7, 651], [291, 569, 7, 653], [291, 554, 7, 655], [291, 657, 7, 658], [561, 562, 291, 563, 136, 564, 7, 660], [291, 572, 7, 662], [], [291, 664, 7, 665], [291, 667, 7, 668], [291, 670, 7, 671], [291, -1, 7, 673], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 677], [441, 442, 443, 679, 7, 680], [7, 682], [], [291, 685, 7, 686], [55, 321, 7, 688], [291, 690, 7, 691], [337, 338, 339, 340, 7, 693], [344, 345, 346, 345, 291, 347, 7, 695], [291, 350, 7, 697], [354, 355, 356, 357, 358, 359, 7, 699], [354, 355, 356, 362, 358, 359, 7, 701], [354, 355, 356, 365, 358, 359, 7, 703], [354, 365, 356, 357, 358, 359, 7, 705], [354, 365, 356, 362, 358, 359, 7, 707], [354, 365, 356, 365, 358, 359, 7, 709], [354, 374, 356, 357, 358, 359, 7, 711], [354, 374, 356, 362, 358, 359, 7, 713], [354, 374, 356, 365, 358, 359, 7, 715], [291, 717, 55, 321, 193, 421, 7, 718], [291, 539, 7, 720], [427, 20, 428, 429, 430, 431, 432, 722, 291, 723, 435, 436, 339, 340, 337, 724, 7, 725], [441, 442, 443, 727, 7, 728], [291, 448, 7, 730], [], [291, 733, 7, 734], [291, 736, 7, 737], [291, 739, 7, 740], [291, 742, 7, 743], [], [291, 746, 7, 747], [291, 749, 7, 750], [7, 752], [13, 535, 291, 754, 7, 755], [291, 539, 7, 757], [427, 20, 428, 429, 430, 431, 432, 759, 291, 760, 435, 436, 339, 340, 337, 724, 7, 761], [441, 442, 443, 763, 7, 764], [291, 766, 7, 767], [291, 769, 7, 770], [13, 535, 291, 754, 7, 772], [291, 774, 7, 775], [291, 777, 7, 778], [291, 780, 7, 781], [291, 783, 7, 784], [], [291, 539, 7, 787], [427, 20, 428, 429, 430, 431, 432, 789, 291, 790, 435, 436, 339, 340, 337, 620, 7, 791], [441, 442, 443, 793, 7, 794], [7, 796], [13, 535, 291, 798, 7, 799], [291, 539, 7, 801], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 805], [441, 442, 443, 807, 7, 808], [291, 448, 7, 810], [], [291, 813, 7, 814], [13, 535, 291, 798, 7, 816], [291, 539, 7, 818], [427, 20, 428, 429, 430, 431, 432, 803, 291, 804, 435, 436, 339, 340, 337, 463, 7, 820], [441, 442, 443, 807, 7, 822], [291, 448, 7, 824], [], [291, 826, 7, 827], [291, 829, 7, 830], [291, 832, 7, 833], [291, 647, 7, 835], [291, 650, 7, 837], [291, 569, 7, 839], [291, 554, 7, 841], [291, 657, 7, 843], [561, 562, 291, 563, 136, 564, 7, 845], [291, 572, 7, 847], [], [291, 664, 7, 849], [291, 667, 7, 851], [291, 670, 7, 853], [291, -1, 7, 855], [427, 20, 428, 429, 430, 431, 432, 675, 291, 676, 435, 436, 339, 340, 337, 463, 7, 857], [441, 442, 443, 679, 7, 859], [7, 861], [], [291, -1, 7, 863], [7, 865], [7, 867], [7, 869], [291, 871, 7, 872], [291, 667, 7, 874], [291, -1, 7, 876], [291, 878, 7, 879], [291, 881, 7, 882], [], [291, 885, 7, 886], [291, 888, 7, 889], [291, 891, 7, 892], [427, 20, 428, 429, 430, 431, 432, 894, 291, 895, 435, 436, 339, 340, 337, 724, 7, 896], [441, 442, 443, 898, 7, 899], [7, 902], [], [291, 905, 7, 906], [291, 908, 7, 909], [291, 911, 7, 912], [291, 914, 7, 915], [291, 917, 7, 918], [7, 920], [291, 922, 7, 923], [291, 925, 7, 926], [55, 928, 598, 599, 53, 929, 291, 930, 7, 931], [291, 933, 7, 934], [291, 936, 7, 937], [291, 939, 7, 940], [7, 942], [291, 944, 7, 945], [], [291, 948, 7, 949], [291, 951, 7, 952], [291, 554, 7, 954], [291, 956, 7, 957], [291, 959, 136, 960, 561, 961, 344, 962, 346, 962, 7, 963], [291, 965, 7, 966], [], [291, 969, 7, 970], [], [291, 973, 7, 974], [], [55, 977, 598, 599, 53, 929, 291, 930, 7, 978], [291, 933, 7, 980], [291, 936, 7, 982], [291, 939, 7, 984], [7, 986], [291, 944, 7, 988], [], [291, 948, 7, 991], [291, 951, 7, 993], [291, 554, 7, 995], [291, 956, 7, 997], [291, 959, 136, 999, 561, 1000, 344, 962, 346, 962, 7, 1001], [291, 965, 7, 1003], [], [291, 969, 7, 1006], [], [291, 973, 7, 1008], [], [55, 1011, 598, 599, 53, 929, 291, 930, 7, 1012], [291, 933, 7, 1014], [291, 936, 7, 1016], [291, 939, 7, 1018], [7, 1020], [291, 944, 7, 1022], [], [291, 948, 7, 1025], [291, 951, 7, 1027], [291, 554, 7, 1029], [291, 956, 7, 1031], [291, 959, 136, 1033, 561, 1034, 344, 962, 346, 962, 7, 1035], [291, 965, 7, 1037], [], [291, 969, 7, 1040], [], [291, 973, 7, 1042], [], [55, 1045, 598, 599, 53, 929, 291, 930, 7, 1046], [291, 933, 7, 1048], [291, 936, 7, 1050], [291, 939, 7, 1052], [7, 1054], [291, 944, 7, 1056], [], [291, 948, 7, 1059], [291, 951, 7, 1061], [291, 554, 7, 1063], [291, 956, 7, 1065], [291, 959, 136, 1067, 561, 1068, 344, 962, 346, 962, 7, 1069], [291, 965, 7, 1071], [], [291, 969, 7, 1074], [], [291, 973, 7, 1076], [], [55, 1078, 598, 599, 53, 929, 291, 930, 7, 1079], [291, 933, 7, 1081], [291, 936, 7, 1083], [291, 939, 7, 1085], [7, 1087], [291, 944, 7, 1089], [], [291, 948, 7, 1092], [291, 951, 7, 1094], [291, 554, 7, 1096], [291, 956, 7, 1098], [291, 959, 136, 1100, 561, 1101, 344, 962, 346, 962, 7, 1102], [291, 965, 7, 1104], [], [291, 969, 7, 1107], [], [291, 973, 7, 1109], [], [291, 1112, 7, 1113], [291, 1115, 7, 1116], [291, 1118, 7, 1119], [291, -1, 7, 1121], [1123, 1124, 291, 1125, 7, 1126], [291, 1128, 7, 1129], [427, 20, 428, 429, 430, 431, 432, 1131, 291, 1132, 435, 436, 339, 340, 337, 724, 7, 1133], [441, 442, 443, 1135, 7, 1136], [291, 1128, 7, 1138], [], [291, 1141, 7, 1142], [291, 1144, 7, 1145], [1147, 1148, 7, 1149], [291, 1151, 7, 1152], [291, -1, 7, 1154], [], [], [291, 1159, 7, 1160], [], [7, 1163], [], [291, -1, 7, 1168], [], [291, -1, 7, 1170], [291, -1, 7, 1172], [7, 1175], [], [291, -1, 7, 1178], [], [291, -1, 7, 1181], [291, 1183, 7, 1184], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1187], [291, 1189, 7, 1190], [291, 1192, 7, 1193], [291, 1195, 7, 1196], [], [], [291, -1, 7, 1199], [291, -1, 7, 1201], [], [], [7, 1203], [], [291, -1, 7, 1206], [], [291, -1, 7, 1208], [291, -1, 7, 1210], [7, 1212], [], [291, -1, 7, 1215], [], [291, -1, 7, 1218], [291, 1183, 7, 1220], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1222], [291, 1189, 7, 1224], [291, 1192, 7, 1226], [291, 1195, 7, 1228], [], [], [291, -1, 7, 1230], [291, -1, 7, 1232], [], [], [7, 1234], [], [291, -1, 7, 1237], [], [291, -1, 7, 1239], [291, -1, 7, 1241], [7, 1243], [], [291, -1, 7, 1246], [], [291, -1, 7, 1249], [291, 1183, 7, 1251], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1253], [291, 1189, 7, 1255], [291, 1192, 7, 1257], [291, 1195, 7, 1259], [], [], [291, -1, 7, 1261], [291, -1, 7, 1263], [], [], [7, 1265], [], [291, -1, 7, 1268], [], [291, -1, 7, 1270], [291, -1, 7, 1272], [7, 1274], [], [291, -1, 7, 1277], [], [291, -1, 7, 1280], [291, 1183, 7, 1282], [598, 599, 53, 929, 291, 1186, 55, 928, 7, 1284], [291, 1189, 7, 1286], [291, 1192, 7, 1288], [291, 1195, 7, 1290], [], [], [291, -1, 7, 1292], [291, -1, 7, 1294], [], [], [7, 1296], [], [291, -1, 7, 1299], [], [291, -1, 7, 1301], [291, -1, 7, 1303], [7, 1305], [], [291, -1, 7, 1308], [], [291, -1, 7, 1311], [291, 1183, 7, 1313], [598, 599, 53, 929, 291, 1186, 55, 977, 7, 1315], [291, 1189, 7, 1317], [291, 1192, 7, 1319], [291, 1195, 7, 1321], [], [], [291, -1, 7, 1323], [291, -1, 7, 1325], [], [], [7, 1327], [], [291, -1, 7, 1330], [], [291, -1, 7, 1332], [291, -1, 7, 1334], [7, 1336], [], [291, -1, 7, 1339], [], [291, -1, 7, 1342], [291, 1183, 7, 1344], [598, 599, 53, 929, 291, 1186, 55, 1011, 7, 1346], [291, 1189, 7, 1348], [291, 1192, 7, 1350], [291, 1195, 7, 1352], [], [], [291, -1, 7, 1354], [291, -1, 7, 1356], [], [], [7, 1358], [], [291, -1, 7, 1361], [], [291, -1, 7, 1363], [291, -1, 7, 1365], [7, 1367], [], [291, -1, 7, 1370], [], [291, -1, 7, 1373], [291, 1183, 7, 1375], [598, 599, 53, 929, 291, 1186, 55, 1045, 7, 1377], [291, 1189, 7, 1379], [291, 1192, 7, 1381], [291, 1195, 7, 1383], [], [], [291, -1, 7, 1385], [291, -1, 7, 1387], [], [], [7, 1389], [], [291, -1, 7, 1392], [], [291, -1, 7, 1394], [291, -1, 7, 1396], [7, 1398], [], [291, -1, 7, 1401], [], [291, -1, 7, 1404], [291, 1183, 7, 1406], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1408], [291, 1189, 7, 1410], [291, 1192, 7, 1412], [291, 1195, 7, 1414], [], [], [291, -1, 7, 1416], [291, -1, 7, 1418], [], [], [7, 1420], [], [291, -1, 7, 1423], [], [291, -1, 7, 1425], [291, -1, 7, 1427], [7, 1429], [], [291, -1, 7, 1432], [], [291, -1, 7, 1435], [291, 1183, 7, 1437], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1439], [291, 1189, 7, 1441], [291, 1192, 7, 1443], [291, 1195, 7, 1445], [], [], [291, -1, 7, 1447], [291, -1, 7, 1449], [], [], [7, 1451], [], [291, -1, 7, 1454], [], [291, -1, 7, 1456], [291, -1, 7, 1458], [7, 1460], [], [291, -1, 7, 1463], [], [291, -1, 7, 1466], [291, 1183, 7, 1468], [598, 599, 53, 929, 291, 1186, 55, 1078, 7, 1470], [291, 1189, 7, 1472], [291, 1192, 7, 1474], [291, 1195, 7, 1476], [], [], [291, -1, 7, 1478], [291, -1, 7, 1480], [], [], [], [291, -1, 7, 1482], [], [291, 1485, 7, 1486], [291, 1488, 136, 1489, 561, 1490, 7, 1491], [291, 1493, 136, 1494, 561, 1490, 7, 1495], [291, 1497, 136, 1498, 561, 1490, 7, 1499], [291, 1501, 136, 1502, 561, 1490, 7, 1503], [291, 1505, 7, 1506], [13, 535, 291, 1508, 7, 1509], [291, 1511, 7, 1512], [291, 777, 7, 1514], [291, 780, 7, 1516], [291, 783, 7, 1518], [], [291, 539, 7, 1521], [427, 20, 428, 429, 430, 431, 432, 1523, 291, 1524, 435, 436, 339, 340, 337, 724, 7, 1525], [441, 442, 443, 1527, 7, 1528], [13, 535, 291, 754, 7, 1530], [291, 1511, 7, 1532], [291, 777, 7, 1534], [291, 780, 7, 1536], [291, 783, 7, 1538], [], [291, 539, 7, 1541], [427, 20, 428, 429, 430, 431, 432, 1543, 291, 1544, 435, 436, 339, 340, 337, 724, 7, 1545], [441, 442, 443, 1547, 7, 1548], [13, 535, 291, 754, 7, 1550], [291, 1511, 7, 1552], [291, 777, 7, 1554], [291, 780, 7, 1556], [291, 783, 7, 1558], [], [291, 539, 7, 1561], [427, 20, 428, 429, 430, 431, 432, 1563, 291, 1564, 435, 436, 339, 340, 337, 588, 7, 1565], [441, 442, 443, 1567, 7, 1568], [13, 535, 291, 754, 7, 1570], [291, 1511, 7, 1572], [291, 777, 7, 1574], [291, 780, 7, 1576], [291, 783, 7, 1578], [], [291, 539, 7, 1581], [427, 20, 428, 429, 430, 431, 432, 1583, 291, 1584, 435, 436, 339, 340, 337, 463, 7, 1585], [441, 442, 443, 1587, 7, 1588], [291, -1, 7, 1590], [291, 1592, 7, 1593], [291, 667, 7, 1595], [291, 1112, 7, 1597], [291, 1115, 7, 1599], [291, 1118, 7, 1601], [291, -1, 7, 1603], [1123, 1124, 291, 1125, 7, 1605], [291, 1128, 7, 1607], [427, 20, 428, 429, 430, 431, 432, 1609, 291, 1610, 435, 436, 339, 340, 337, 437, 7, 1611], [441, 442, 443, 1613, 7, 1614], [291, 1128, 7, 1616], [], [291, 1619, 7, 1620], [291, 1622, 7, 1623], [291, 1625, 7, 1626], [], [291, 1629, 7, 1630], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1633], [441, 442, 443, 1635, 7, 1636], [291, 1622, 7, 1638], [291, 1625, 7, 1640], [], [291, 1629, 7, 1643], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1645], [441, 442, 443, 1635, 7, 1647], [291, 1622, 7, 1649], [291, 1625, 7, 1651], [], [291, 1629, 7, 1654], [427, 20, 428, 429, 430, 431, 432, 722, 291, 1632, 435, 436, 339, 340, 337, 724, 7, 1656], [441, 442, 443, 1635, 7, 1658], [185, 1660, 7, 1661], [291, 1663, 7, 1664], [291, 1666, 7, 1667], [291, 1669, 7, 1670], [291, 1672, 7, 1673], [7, 1675], [291, 1677, 7, 1678], [7, 1680], [291, 1682, 7, 1683], [291, 1685, 7, 1686], [1689, 1690, 291, 1691, 1692, 1693, 1694, 429, 1695, 20, 1696, -1, 193, 1697, 7, 1698], [7, 1700], [291, 1702, 7, 1703], [13, 535, 291, 1705, 7, 1706], [291, 1511, 7, 1708], [291, 777, 7, 1710], [291, 780, 7, 1712], [291, 783, 7, 1714], [], [291, 539, 7, 1717], [7, 1719], [291, 1721, 7, 1722], [291, 1724, 7, 1725], [291, 1727, 7, 1728], [291, 448, 7, 1730], [], [291, -1, 7, 1733], [], [13, 535, 291, 1736, 7, 1737], [291, 539, 7, 1739], [427, 20, 428, 429, 430, 431, 432, 1741, 291, 1742, 435, 436, 339, 340, 337, 588, 7, 1743], [441, 442, 443, 1745, 7, 1746], [291, 1748, 7, 1749], [291, 1751, 7, 1752], [291, 1754, 7, 1755], [291, 1757, 7, 1758], [291, 1760, 7, 1761], [291, -1, 7, 1763], [291, 1765, 55, 321, 193, 421, 7, 1766], [291, 424, 7, 1768], [427, 20, 428, 429, 430, 431, 432, 433, 291, 434, 435, 436, 339, 340, 337, 437, 7, 1770], [441, 442, 443, 444, 7, 1772], [291, 448, 7, 1774], [], [291, 1760, 7, 1776], [291, -1, 7, 1778], [291, 1765, 55, 456, 193, 421, 7, 1780], [291, 424, 7, 1782], [427, 20, 428, 429, 430, 431, 432, 461, 291, 462, 435, 436, 339, 340, 337, 463, 7, 1784], [441, 442, 443, 466, 7, 1786], [291, 448, 7, 1788], [], [291, 1760, 7, 1790], [291, -1, 7, 1792], [291, 1765, 55, 476, 193, 421, 7, 1794], [291, 424, 7, 1796], [427, 20, 428, 429, 430, 431, 432, 481, 291, 482, 435, 436, 339, 340, 337, 437, 7, 1798], [441, 442, 443, 485, 7, 1800], [291, 448, 7, 1802], [], [291, 1760, 7, 1804], [291, -1, 7, 1806], [291, 1765, 55, 495, 193, 421, 7, 1808], [291, 424, 7, 1810], [427, 20, 428, 429, 430, 431, 432, 500, 291, 501, 435, 436, 339, 340, 337, 463, 7, 1812], [441, 442, 443, 504, 7, 1814], [291, 448, 7, 1816], [], [291, 510, 7, 1818], [185, 1820, 13, 1821, 7, 1822], [], [141, -1, 136, 1825, 1826, 1827, 1828, 1829, 149, 150, 7, 1830], [], [1832, 1833, 427, 20, 193, 1834, 7, 1835], [136, 1837, 1838, 1839, 187, 1840, 7, 1841], [7, 1844], [1846, 1847, 185, 1848, 435, 1849, 193, 1850, 7, 1851], [], [136, 1853, 187, 1840, 7, 1854], [185, 1856, 187, 1840, 7, 1857], [], [136, 247, 7, 1860], [136, 250, 7, 1862], [136, 253, 7, 1864], [136, 256, 7, 1866], [136, 259, 7, 1868], [136, 262, 7, 1870], [136, 265, 7, 1872], [136, 268, 7, 1874], [136, 271, 7, 1876], [136, 274, 7, 1878], [136, 277, 7, 1880], [136, 280, 7, 1882], [136, 1884, 7, 1885], [136, 1887, 7, 1888], [193, 1891, 7, 1892], [1147, 1894, 193, 1895, 7, 1896], [193, 1898, 7, 1899], [53, 196, 55, 1901, 7, 1902], [193, 1895, 7, 1904], [193, 1898, 7, 1906], [53, 196, 55, 1901, 7, 1908]], "textValue": {"index": [732, 795], "value": [-1, -1]}, "inputValue": {"index": [], "value": []}, "inputChecked": {"index": []}, "optionSelected": {"index": []}, "contentDocumentIndex": {"index": [], "value": []}, "pseudoType": {"index": [426, 448, 470, 492, 514, 536, 558, 580, 602, 624], "value": [1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167]}, "pseudoIdentifier": {"index": [], "value": []}, "isClickable": {"index": [0, 88, 121, 129, 137, 145, 165, 183, 187, 215, 229, 316, 334, 352, 370, 388, 437, 459, 481, 503, 525, 547, 569, 591, 613, 635, 760, 768, 776, 784]}, "currentSourceURL": {"index": [170, 203, 280, 327, 345, 363, 381, 399, 649, 650, 651, 652], "value": [564, 564, 564, 960, 999, 1033, 1067, 1100, 1489, 1494, 1498, 1502]}, "originURL": {"index": [], "value": []}}, "layout": {"nodeIndex": [0, 1, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 426, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 447, 448, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 557, 558, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 795, 797, 798, 799, 817, 818, 819, 821, 822], "styles": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "bounds": [[0, 0, 1280, 720], [0, 0, 1280, 7961.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7945.640625], [8, 8, 1264, 7873.640625], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [288.203125, 288.203125, 704.609375, 703.59375], [559.96875, 558.96875, 161.0625, 161.0625], [559.96875, 830.734375, 161.0625, 161.0625], [559.96875, 288.203125, 161.0625, 161.0625], [288.203125, 558.96875, 161.0625, 161.0625], [288.203125, 830.734375, 161.0625, 161.0625], [288.203125, 288.203125, 161.0625, 161.0625], [831.75, 558.96875, 161.0625, 161.0625], [831.75, 830.734375, 161.0625, 161.0625], [831.75, 288.203125, 161.0625, 161.0625], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [8, 1272, 65.765625, 17], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [8, 1290, 79.234375, 17], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [8, 1308, 24.890625, 17], [8, 1326, 1264, 18], [8, 1326, 5.328125, 17], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [9, 1344, 18, 16], [28, 1344, 39.109375, 17], [28, 1344, 39.109375, 17], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [10, 1362, 16, 16], [28, 1362, 57.765625, 17], [28, 1362, 57.765625, 17], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [9, 1380, 18, 16], [28, 1380, 77.46875, 17], [28, 1380, 77.46875, 17], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [10, 1398, 15, 16], [28, 1398, 64.4375, 17], [28, 1398, 64.4375, 17], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [8, 1416, 48.765625, 17], [8, 1434, 1264, 18], [8, 1434, 240.265625, 17], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84.171875, 21], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [16, 1455, 68.171875, 15], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 151.078125, 17], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 91.9375, 21], [16, 1590, 75.9375, 15], [16, 1590.328125, 16.65625, 13.328125], [19.328125, 1590.328125, 9.171875, 13.328125], [32.65625, 1590, 59.28125, 15], [32.65625, 1590, 59.28125, 15], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [10, 1609.5, 16, 13], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [8.8125, 1625, 18.375, 14], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 6241.640625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 1541.65625], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [8, 1736, 151.078125, 17], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 17.5, 14], [9.75, 1754.875, 14, 12.25], [8, 1768, 1264, 18], [8, 1768, 29.328125, 17], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [288.203125, 2066.203125, 704.609375, 703.59375], [559.96875, 2336.96875, 161.0625, 161.0625], [559.96875, 2608.734375, 161.0625, 161.0625], [559.96875, 2066.203125, 161.0625, 161.0625], [288.203125, 2336.96875, 161.0625, 161.0625], [288.203125, 2608.734375, 161.0625, 161.0625], [288.203125, 2066.203125, 161.0625, 161.0625], [831.75, 2336.96875, 161.0625, 161.0625], [831.75, 2608.734375, 161.0625, 161.0625], [831.75, 2066.203125, 161.0625, 161.0625], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [11, 3051.5, 13, 13], [28, 3050, 30.21875, 17], [28, 3050, 30.21875, 17], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52.4375, 17], [8, 3068, 52.4375, 17], [8, 3086, 1264, 95.65625], [8, 3086, 1264, 19.328125], [8, 3086, 1264, 19.328125], [8, 3086, 32.65625, 19.328125], [16, 3089, 16.65625, 13.328125], [16, 3089, 16.65625, 13.328125], [18.484375, 3094.40625, 10.84375, 2.515625], [8, 3105.328125, 1264, 76.328125], [8, 3105.328125, 1264, 55.328125], [8, 3105.328125, 75.28125, 34.328125], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3108.328125, 59.28125, 15], [16, 3123.328125, 59.28125, 13.328125], [37.3125, 3123.328125, 16.65625, 13.328125], [37.765625, 3123.875, 15.75, 12.21875], [8, 3139.65625, 1264, 21], [8, 3139.65625, 68.234375, 21], [16, 3142.65625, 52.234375, 15], [16, 3142.984375, 16.65625, 13.328125], [17.65625, 3143.8125, 13.34375, 11.671875], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3142.65625, 35.578125, 15], [8, 3160.65625, 1264, 21], [8, 3160.65625, 68.234375, 21], [16, 3163.65625, 52.234375, 15], [16, 3163.984375, 16.65625, 13.328125], [17.65625, 3164.8125, 13.34375, 11.671875], [32.65625, 3163.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 4699.984375], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 146], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 114], [8, 3181.65625, 1264, 96], [8, 3181.65625, 1264, 96], [8, 3181.65625, 96, 96], [8, 3277.65625, 1264, 18], [8, 3277.65625, 151.078125, 17], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 32], [8, 3295.65625, 1264, 14], [8, 3295.65625, 17.5, 14], [9.75, 3296.53125, 14, 12.25], [8, 3309.65625, 1264, 18], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 0], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 4459.328125], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 1264, 18], [8, 3327.65625, 408.765625, 17], [8, 3345.65625, 1264, 506], [8, 3345.65625, 1264, 50], [8, 3345.65625, 1264, 50], [8, 3345.65625, 14, 16], [8.5, 3345.65625, 13, 16], [8, 3377.65625, 1264, 18], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 0], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 440], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 88], [8, 3411.65625, 1264, 18], [8, 3411.65625, 1264, 18], [8, 3411.65625, 432.25, 17], [8, 3429.65625, 1264, 70], [8, 3429.65625, 1264, 34], [8, 3429.65625, 1264, 16], [8, 3429.65625, 1264, 16], [8, 3429.65625, 16, 16], [8, 3445.65625, 1264, 18], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 1264, 18], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 1264, 18], [8, 3481.65625, 8, 17], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 88], [8, 3499.65625, 1264, 18], [8, 3499.65625, 1264, 18], [8, 3499.65625, 456.84375, 17], [8, 3517.65625, 1264, 70], [8, 3517.65625, 1264, 34], [8, 3517.65625, 1264, 16], [8, 3517.65625, 1264, 16], [8, 3517.65625, 16, 16], [8, 3533.65625, 1264, 18], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 1264, 18], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 1264, 18], [8, 3569.65625, 8, 17], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 88], [8, 3587.65625, 1264, 18], [8, 3587.65625, 1264, 18], [8, 3587.65625, 405.859375, 17], [8, 3605.65625, 1264, 70], [8, 3605.65625, 1264, 34], [8, 3605.65625, 1264, 16], [8, 3605.65625, 1264, 16], [8, 3605.65625, 16, 16], [8, 3621.65625, 1264, 18], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 1264, 18], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 1264, 18], [8, 3657.65625, 8, 17], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 88], [8, 3675.65625, 1264, 18], [8, 3675.65625, 1264, 18], [8, 3675.65625, 413.734375, 17], [8, 3693.65625, 1264, 70], [8, 3693.65625, 1264, 34], [8, 3693.65625, 1264, 16], [8, 3693.65625, 1264, 16], [8, 3693.65625, 16, 16], [8, 3709.65625, 1264, 18], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 1264, 18], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 1264, 18], [8, 3745.65625, 8, 17], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 88], [8, 3763.65625, 1264, 18], [8, 3763.65625, 1264, 18], [8, 3763.65625, 272.40625, 17], [8, 3781.65625, 1264, 70], [8, 3781.65625, 1264, 34], [8, 3781.65625, 1264, 16], [8, 3781.65625, 1264, 16], [8, 3781.65625, 16, 16], [8, 3797.65625, 1264, 18], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 1264, 18], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 1264, 18], [8, 3833.65625, 8, 17], [8, 3851.65625, 1264, 3799.328125], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 34], [8, 3851.65625, 1264, 16], [8, 3851.65625, 20, 16], [11, 3852.65625, 14, 14], [8, 3867.65625, 1264, 18], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 3731], [8, 3885.65625, 1264, 608], [8, 3885.65625, 408.265625, 17], [8, 3885.65625, 408.265625, 17], [0, 7242, 0, 0], [8, 3919.65625, 1264, 540], [48, 3919.65625, 1224, 54], [32, 3919.65625, 16, 18], [32, 3919.65625, 16, 17], [48, 3919.65625, 0, 17], [0, 7242, 0, 0], [48, 3919.65625, 1224, 53], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 35], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 1224, 18], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [52, 3955.65625, 0, 17], [52, 3955.65625, 0, 17], [0, 7242, 0, 0], [48, 3973.65625, 1224, 54], [32, 3973.65625, 16, 18], [32, 3973.65625, 16, 17], [48, 3973.65625, 0, 17], [0, 7242, 0, 0], [48, 3973.65625, 1224, 53], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 35], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 1224, 18], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [52, 4009.65625, 0, 17], [52, 4009.65625, 0, 17], [0, 7242, 0, 0], [48, 4027.65625, 1224, 54], [32, 4027.65625, 16, 18], [32, 4027.65625, 16, 17], [48, 4027.65625, 0, 17], [0, 7242, 0, 0], [48, 4027.65625, 1224, 53], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 35], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 1224, 18], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [52, 4063.65625, 0, 17], [52, 4063.65625, 0, 17], [0, 7242, 0, 0], [48, 4081.65625, 1224, 54], [32, 4081.65625, 16, 18], [32, 4081.65625, 16, 17], [48, 4081.65625, 0, 17], [0, 7242, 0, 0], [48, 4081.65625, 1224, 53], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 35], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 1224, 18], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [52, 4117.65625, 0, 17], [52, 4117.65625, 0, 17], [0, 7242, 0, 0], [48, 4135.65625, 1224, 54], [32, 4135.65625, 16, 18], [32, 4135.65625, 16, 17], [48, 4135.65625, 0, 17], [0, 7242, 0, 0], [48, 4135.65625, 1224, 53], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 35], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 1224, 18], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [52, 4171.65625, 0, 17], [52, 4171.65625, 0, 17], [0, 7242, 0, 0], [48, 4189.65625, 1224, 54], [32, 4189.65625, 16, 18], [32, 4189.65625, 16, 17], [48, 4189.65625, 0, 17], [0, 7242, 0, 0], [48, 4189.65625, 1224, 53], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 35], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 1224, 18], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [52, 4225.65625, 0, 17], [52, 4225.65625, 0, 17], [0, 7242, 0, 0], [48, 4243.65625, 1224, 54], [32, 4243.65625, 16, 18], [32, 4243.65625, 16, 17], [48, 4243.65625, 0, 17], [0, 7242, 0, 0], [48, 4243.65625, 1224, 53], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 35], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 1224, 18], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [52, 4279.65625, 0, 17], [52, 4279.65625, 0, 17], [0, 7242, 0, 0], [48, 4297.65625, 1224, 54], [32, 4297.65625, 16, 18], [32, 4297.65625, 16, 17], [48, 4297.65625, 0, 17], [0, 7242, 0, 0], [48, 4297.65625, 1224, 53], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 35], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 1224, 18], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [52, 4333.65625, 0, 17], [52, 4333.65625, 0, 17], [0, 7242, 0, 0], [48, 4351.65625, 1224, 54], [32, 4351.65625, 16, 18], [32, 4351.65625, 16, 17], [48, 4351.65625, 0, 17], [0, 7242, 0, 0], [48, 4351.65625, 1224, 53], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 35], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 1224, 18], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [52, 4387.65625, 0, 17], [52, 4387.65625, 0, 17], [0, 7242, 0, 0], [48, 4405.65625, 1224, 54], [24, 4405.65625, 24, 18], [24, 4405.65625, 24, 17], [48, 4405.65625, 0, 17], [0, 7242, 0, 0], [48, 4405.65625, 1224, 53], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 35], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 1224, 18], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [52, 4441.65625, 0, 17], [52, 4441.65625, 0, 17], [0, 7242, 0, 0], [8, 4475.65625, 582.4375, 17], [8, 4475.65625, 582.4375, 17], [8, 4493.65625, 1264, 3123], [8, 4493.65625, 1500, 1000], [8, 6679.65625, 59.53125, 18], [67.53125, 5493.65625, 1200, 1200], [8, 6697.65625, 735, 919], [8, 7616.65625, 1264, 34.328125], [8, 7616.65625, 92.3125, 34.328125], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7619.65625, 76.3125, 15], [16, 7634.65625, 76.3125, 13.328125], [45.828125, 7634.65625, 16.65625, 13.328125], [48.3125, 7634.65625, 11.6875, 13.328125], [100.3125, 7616.65625, 97.25, 34.328125], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7619.65625, 81.25, 15], [108.3125, 7634.65625, 81.25, 13.328125], [140.609375, 7634.65625, 16.65625, 13.328125], [143.09375, 7635.484375, 11.6875, 11.671875], [197.5625, 7616.65625, 125.40625, 34.328125], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7619.65625, 109.40625, 15], [205.5625, 7634.65625, 109.40625, 13.328125], [251.9375, 7634.65625, 16.65625, 13.328125], [255.265625, 7634.65625, 10, 13.328125], [322.96875, 7616.65625, 78.96875, 34.328125], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7619.65625, 62.96875, 15], [330.96875, 7634.65625, 62.96875, 13.328125], [354.125, 7634.65625, 16.65625, 13.328125], [355.78125, 7634.65625, 13.34375, 13.328125], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 136], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 34], [8, 7650.984375, 1264, 16], [8, 7650.984375, 20, 16], [9, 7650.984375, 18, 16], [8, 7666.984375, 1264, 18], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 1264, 102], [8, 7684.984375, 1264, 34], [8, 7684.984375, 1264, 18], [8, 7684.984375, 310.953125, 17], [8, 7702.984375, 1264, 16], [8, 7702.984375, 14, 16], [8.5, 7704.484375, 13, 13], [8, 7718.984375, 1264, 34], [8, 7718.984375, 1264, 18], [8, 7718.984375, 360.34375, 17], [8, 7736.984375, 1264, 16], [8, 7736.984375, 14, 16], [8.5, 7738.484375, 13, 13], [8, 7752.984375, 1264, 34], [8, 7752.984375, 1264, 18], [8, 7752.984375, 344.75, 17], [8, 7770.984375, 1264, 16], [8, 7770.984375, 14, 16], [8.5, 7772.484375, 13, 13], [8, 7786.984375, 1264, 0], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 1264, 94.65625], [8, 7786.984375, 182, 57.328125], [8, 7844.3125, 1264, 0], [8, 7844.3125, 1264, 37.328125], [8, 7845.640625, 189.359375, 36], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7848.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 15], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [16, 7863.640625, 173.359375, 0], [72.296875, 7863.640625, 41.5, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [113.796875, 7863.640625, 19.265625, 15], [197.359375, 7844.3125, 36.828125, 22.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [205.359375, 7847.3125, 20.828125, 16.65625], [209.609375, 7848.4375, 12.328125, 14.5], [8, 7881.640625, 1264, 0], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 72], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 1264, 18], [8, 7881.640625, 20, 16], [9, 7881.640625, 18, 16], [28, 7881.640625, 39.109375, 17], [28, 7881.640625, 39.109375, 17], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 1264, 18], [8, 7899.640625, 20, 16], [10, 7899.640625, 16, 16], [28, 7899.640625, 57.765625, 17], [28, 7899.640625, 57.765625, 17], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 1264, 18], [8, 7917.640625, 20, 16], [9, 7917.640625, 18, 16], [28, 7917.640625, 77.46875, 17], [28, 7917.640625, 77.46875, 17], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 1264, 18], [8, 7935.640625, 20, 16], [10, 7935.640625, 15, 16], [28, 7935.640625, 64.4375, 17], [28, 7935.640625, 64.4375, 17], [8, 7953.640625, 1264, 0], [576, 0, 704, 34], [8, 7953.640625, 0, 0], [7, 7952.640625, 1, 1], [7, 7952.640625, 85.765625, 17], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "text": [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 399, -1, -1, 406, -1, 410, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, -1, 524, -1, 528, -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 947, -1, -1, -1, -1, -1, -1, 968, -1, 972, -1, 976, -1, -1, -1, -1, -1, -1, 990, -1, -1, -1, -1, -1, -1, 1005, -1, 972, -1, 1010, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, 1039, -1, 972, -1, 1044, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, -1, 1073, -1, 972, -1, 46, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, -1, 1106, -1, 972, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, -1, -1, -1, 1156, 1157, -1, -1, -1, 1166, -1, 1157, -1, -1, -1, 1177, -1, 1180, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1205, -1, 1157, -1, -1, -1, 1214, -1, 1217, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1236, -1, 1157, -1, -1, -1, 1245, -1, 1248, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1267, -1, 1157, -1, -1, -1, 1276, -1, 1279, -1, -1, -1, -1, -1, -1, 976, 1198, -1, -1, 1157, -1, -1, 1298, -1, 1157, -1, -1, -1, 1307, -1, 1310, -1, -1, -1, -1, -1, -1, 1010, 1198, -1, -1, 1157, -1, -1, 1329, -1, 1157, -1, -1, -1, 1338, -1, 1341, -1, -1, -1, -1, -1, -1, 1044, 1198, -1, -1, 1157, -1, -1, 1360, -1, 1157, -1, -1, -1, 1369, -1, 1372, -1, -1, -1, -1, -1, -1, 46, 1198, -1, -1, 1157, -1, -1, 1391, -1, 1157, -1, -1, -1, 1400, -1, 1403, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1422, -1, 1157, -1, -1, -1, 1431, -1, 1434, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, -1, 1453, -1, 1157, -1, -1, -1, 1462, -1, 1465, -1, -1, -1, -1, -1, -1, 1111, 1198, -1, -1, 1157, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1540, -1, -1, -1, -1, -1, -1, -1, -1, 1560, -1, -1, -1, -1, -1, -1, -1, -1, 1580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1618, -1, -1, -1, 1628, -1, -1, -1, -1, -1, 1642, -1, -1, -1, -1, -1, 1653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1716, -1, -1, -1, -1, -1, -1, 1732, -1, 1735, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, -1, -1, 1, -1, -1, -1, -1, -1], "stackingContexts": {"index": [0, 1, 714, 720, 722]}, "paintOrders": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 9, 9, 1, 1, 10, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 11, 1, 1, 1, 1, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 13, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 15, 15, 1, 1, 1, 16, 16, 1, 1, 1, 1, 1, 17, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 19, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 24, 24, 1, 1, 1, 1, 1, 1, 1, 25, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 26, 26, 1, 1, 1, 1, 1, 1, 1, 27, 27, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 29, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 31, 1, 1, 1, 1, 1, 1, 1, 1, 32, 32, 1, 1, 1, 1, 1, 1, 33, 33, 1, 1, 1, 1, 1, 1, 34, 34, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 2, 1, 36, 36, 37, 37, 38, 38, 39], "offsetRects": [[], [0, 0, 1280, 7962], [0, 0, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7946], [8, 8, 1264, 7874], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1632], [8, 8, 1264, 1408], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1282], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [8, 8, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 1272, 1264, 18], [8, 1272, 1264, 18], [], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 54], [8, 1290, 1264, 18], [], [8, 1308, 1264, 36], [8, 1308, 1264, 18], [], [8, 1326, 1264, 18], [], [8, 1344, 1264, 72], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 1264, 18], [8, 1344, 20, 16], [0, 0, 0, 0], [28, 1344, 39, 17], [], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 1264, 18], [8, 1362, 20, 16], [0, 0, 0, 0], [28, 1362, 58, 17], [], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 1264, 18], [8, 1380, 20, 16], [0, 0, 0, 0], [28, 1380, 77, 17], [], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 1264, 18], [8, 1398, 20, 16], [0, 0, 0, 0], [28, 1398, 64, 17], [], [8, 1416, 1264, 0], [8, 1416, 1264, 224], [8, 1416, 1264, 57], [8, 1416, 1264, 18], [8, 1416, 1264, 18], [], [8, 1434, 1264, 18], [], [8, 1452, 1264, 21], [8, 1452, 1264, 21], [8, 1452, 84, 21], [16, 1455, 68, 15], [16, 1455, 68, 15], [], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 114], [8, 1473, 1264, 96], [8, 1473, 1264, 96], [8, 1473, 96, 96], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [8, 1569, 1264, 18], [], [8, 1587, 1264, 53], [8, 1587, 1264, 21], [8, 1587, 92, 21], [16, 1590, 76, 15], [16, 1590, 17, 13], [0, 0, 0, 0], [33, 1590, 59, 15], [], [8, 1608, 1264, 16], [8, 1608, 1264, 16], [8, 1608, 20, 16], [0, 0, 0, 0], [8, 1624, 1264, 16], [8, 1624, 1264, 16], [8, 1624, 20, 16], [0, 0, 0, 0], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 6242], [8, 1640, 1264, 1542], [8, 1640, 1264, 1542], [8, 1640, 1264, 146], [8, 1640, 1264, 146], [8, 1640, 1264, 114], [8, 1640, 1264, 114], [8, 1640, 1264, 96], [8, 1640, 1264, 96], [8, 1640, 96, 96], [8, 1736, 1264, 18], [], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 32], [8, 1754, 1264, 14], [8, 1754, 18, 14], [0, 0, 0, 0], [8, 1768, 1264, 18], [], [8, 1786, 1264, 1282], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [8, 1786, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [8, 3050, 1264, 18], [8, 3050, 1264, 18], [8, 3050, 20, 16], [0, 0, 0, 0], [28, 3050, 30, 17], [], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 1264, 18], [8, 3068, 52, 17], [], [8, 3086, 1264, 96], [8, 3086, 1264, 19], [8, 3086, 1264, 19], [8, 3086, 33, 19], [16, 3089, 17, 13], [16, 3089, 17, 13], [0, 0, 0, 0], [8, 3105, 1264, 76], [8, 3105, 1264, 55], [8, 3105, 75, 34], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [16, 3108, 59, 15], [], [16, 3123, 59, 13], [37, 3123, 17, 13], [0, 0, 0, 0], [8, 3140, 1264, 21], [8, 3140, 68, 21], [16, 3143, 52, 15], [16, 3143, 17, 13], [0, 0, 0, 0], [33, 3143, 36, 15], [], [8, 3161, 1264, 21], [8, 3161, 68, 21], [16, 3164, 52, 15], [16, 3164, 17, 13], [0, 0, 0, 0], [33, 3164, 36, 15], [], [8, 3182, 1264, 4700], [8, 3182, 1264, 4700], [8, 3182, 1264, 146], [8, 3182, 1264, 146], [8, 3182, 1264, 114], [8, 3182, 1264, 114], [8, 3182, 1264, 96], [8, 3182, 1264, 96], [8, 3182, 96, 96], [8, 3278, 1264, 18], [], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 32], [8, 3296, 1264, 14], [8, 3296, 18, 14], [0, 0, 0, 0], [8, 3310, 1264, 18], [], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 0], [8, 3328, 1264, 0], [8, 3328, 1264, 4459], [8, 3328, 1264, 4459], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [8, 3328, 1264, 18], [], [8, 3346, 1264, 506], [8, 3346, 1264, 50], [8, 3346, 1264, 50], [8, 3346, 14, 16], [0, 0, 0, 0], [8, 3378, 1264, 18], [], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 0], [8, 3412, 1264, 440], [8, 3412, 1264, 440], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 88], [8, 3412, 1264, 18], [8, 3412, 1264, 18], [], [8, 3430, 1264, 70], [8, 3430, 1264, 34], [8, 3430, 1264, 16], [8, 3430, 1264, 16], [8, 3430, 16, 16], [8, 3446, 1264, 18], [], [8, 3464, 1264, 18], [], [8, 3482, 1264, 18], [], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 88], [8, 3500, 1264, 18], [8, 3500, 1264, 18], [], [8, 3518, 1264, 70], [8, 3518, 1264, 34], [8, 3518, 1264, 16], [8, 3518, 1264, 16], [8, 3518, 16, 16], [8, 3534, 1264, 18], [], [8, 3552, 1264, 18], [], [8, 3570, 1264, 18], [], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 88], [8, 3588, 1264, 18], [8, 3588, 1264, 18], [], [8, 3606, 1264, 70], [8, 3606, 1264, 34], [8, 3606, 1264, 16], [8, 3606, 1264, 16], [8, 3606, 16, 16], [8, 3622, 1264, 18], [], [8, 3640, 1264, 18], [], [8, 3658, 1264, 18], [], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 88], [8, 3676, 1264, 18], [8, 3676, 1264, 18], [], [8, 3694, 1264, 70], [8, 3694, 1264, 34], [8, 3694, 1264, 16], [8, 3694, 1264, 16], [8, 3694, 16, 16], [8, 3710, 1264, 18], [], [8, 3728, 1264, 18], [], [8, 3746, 1264, 18], [], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 88], [8, 3764, 1264, 18], [8, 3764, 1264, 18], [], [8, 3782, 1264, 70], [8, 3782, 1264, 34], [8, 3782, 1264, 16], [8, 3782, 1264, 16], [8, 3782, 16, 16], [8, 3798, 1264, 18], [], [8, 3816, 1264, 18], [], [8, 3834, 1264, 18], [], [8, 3852, 1264, 3799], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 34], [8, 3852, 1264, 16], [8, 3852, 20, 16], [0, 0, 0, 0], [8, 3868, 1264, 18], [], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 3731], [8, 3886, 1264, 608], [8, 3886, 408, 17], [], [], [8, 3920, 1264, 540], [48, 3920, 1224, 54], [32, 3920, 16, 18], [32, 3920, 16, 18], [48, 3920, 0, 17], [], [48, 3920, 1224, 53], [48, 3920, 239, 17], [48, 3920, 239, 17], [], [287, 3920, 594, 17], [], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [881, 3920, 1224, 53], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [48, 3938, 1224, 18], [], [], [52, 3956, 0, 17], [52, 3956, 0, 17], [], [48, 3974, 1224, 54], [32, 3974, 16, 18], [32, 3974, 16, 18], [48, 3974, 0, 17], [], [48, 3974, 1224, 53], [48, 3974, 247, 17], [48, 3974, 247, 17], [], [295, 3974, 615, 17], [], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [910, 3974, 1224, 53], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [48, 3992, 1224, 18], [], [], [52, 4010, 0, 17], [52, 4010, 0, 17], [], [48, 4028, 1224, 54], [32, 4028, 16, 18], [32, 4028, 16, 18], [48, 4028, 0, 17], [], [48, 4028, 1224, 53], [48, 4028, 148, 17], [48, 4028, 148, 17], [], [196, 4028, 456, 17], [], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [653, 4028, 1224, 53], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [48, 4046, 1224, 18], [], [], [52, 4064, 0, 17], [52, 4064, 0, 17], [], [48, 4082, 1224, 54], [32, 4082, 16, 18], [32, 4082, 16, 18], [48, 4082, 0, 17], [], [48, 4082, 1224, 53], [48, 4082, 168, 17], [48, 4082, 168, 17], [], [216, 4082, 556, 17], [], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [772, 4082, 1224, 53], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [48, 4100, 1224, 18], [], [], [52, 4118, 0, 17], [52, 4118, 0, 17], [], [48, 4136, 1224, 54], [32, 4136, 16, 18], [32, 4136, 16, 18], [48, 4136, 0, 17], [], [48, 4136, 1224, 53], [48, 4136, 150, 17], [48, 4136, 150, 17], [], [198, 4136, 392, 17], [], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [590, 4136, 1224, 53], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [48, 4154, 1224, 18], [], [], [52, 4172, 0, 17], [52, 4172, 0, 17], [], [48, 4190, 1224, 54], [32, 4190, 16, 18], [32, 4190, 16, 18], [48, 4190, 0, 17], [], [48, 4190, 1224, 53], [48, 4190, 368, 17], [48, 4190, 368, 17], [], [416, 4190, 580, 17], [], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [996, 4190, 1224, 53], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [48, 4208, 1224, 18], [], [], [52, 4226, 0, 17], [52, 4226, 0, 17], [], [48, 4244, 1224, 54], [32, 4244, 16, 18], [32, 4244, 16, 18], [48, 4244, 0, 17], [], [48, 4244, 1224, 53], [48, 4244, 214, 17], [48, 4244, 214, 17], [], [262, 4244, 969, 17], [], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [1230, 4244, 1224, 53], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [48, 4262, 1224, 18], [], [], [52, 4280, 0, 17], [52, 4280, 0, 17], [], [48, 4298, 1224, 54], [32, 4298, 16, 18], [32, 4298, 16, 18], [48, 4298, 0, 17], [], [48, 4298, 1224, 53], [48, 4298, 151, 17], [48, 4298, 151, 17], [], [199, 4298, 483, 17], [], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [682, 4298, 1224, 53], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [48, 4316, 1224, 18], [], [], [52, 4334, 0, 17], [52, 4334, 0, 17], [], [48, 4352, 1224, 54], [32, 4352, 16, 18], [32, 4352, 16, 18], [48, 4352, 0, 17], [], [48, 4352, 1224, 53], [48, 4352, 145, 17], [48, 4352, 145, 17], [], [193, 4352, 731, 17], [], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [924, 4352, 1224, 53], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [48, 4370, 1224, 18], [], [], [52, 4388, 0, 17], [52, 4388, 0, 17], [], [48, 4406, 1224, 54], [24, 4406, 24, 18], [24, 4406, 24, 18], [48, 4406, 0, 17], [], [48, 4406, 1224, 53], [48, 4406, 92, 17], [48, 4406, 92, 17], [], [140, 4406, 611, 17], [], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [751, 4406, 1224, 53], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [48, 4424, 1224, 18], [], [], [52, 4442, 0, 17], [52, 4442, 0, 17], [], [8, 4476, 582, 17], [], [8, 4494, 1264, 3123], [8, 4494, 1500, 1000], [8, 6680, 60, 18], [68, 5494, 1200, 1200], [8, 6698, 735, 919], [8, 7617, 1264, 34], [8, 7617, 92, 34], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [16, 7620, 76, 15], [], [16, 7635, 76, 13], [46, 7635, 17, 13], [0, 0, 0, 0], [100, 7617, 97, 34], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [108, 7620, 81, 15], [], [108, 7635, 81, 13], [141, 7635, 17, 13], [0, 0, 0, 0], [198, 7617, 125, 34], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [206, 7620, 109, 15], [], [206, 7635, 109, 13], [252, 7635, 17, 13], [0, 0, 0, 0], [323, 7617, 79, 34], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [331, 7620, 63, 15], [], [331, 7635, 63, 13], [354, 7635, 17, 13], [0, 0, 0, 0], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 136], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 34], [8, 7651, 1264, 16], [8, 7651, 20, 16], [0, 0, 0, 0], [8, 7667, 1264, 18], [], [8, 7685, 1264, 102], [8, 7685, 1264, 34], [8, 7685, 1264, 18], [], [8, 7703, 1264, 16], [8, 7703, 14, 16], [0, 0, 0, 0], [8, 7719, 1264, 34], [8, 7719, 1264, 18], [], [8, 7737, 1264, 16], [8, 7737, 14, 16], [0, 0, 0, 0], [8, 7753, 1264, 34], [8, 7753, 1264, 18], [], [8, 7771, 1264, 16], [8, 7771, 14, 16], [0, 0, 0, 0], [8, 7787, 1264, 0], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 1264, 95], [8, 7787, 182, 57], [8, 7844, 1264, 0], [8, 7844, 1264, 37], [8, 7846, 189, 36], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [16, 7849, 173, 15], [], [16, 7864, 173, 15], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [16, 7864, 173, 0], [72, 7864, 42, 15], [], [114, 7864, 19, 15], [], [197, 7844, 37, 23], [205, 7847, 21, 17], [205, 7847, 21, 17], [0, 0, 0, 0], [8, 7882, 1264, 0], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 72], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 1264, 18], [8, 7882, 20, 16], [0, 0, 0, 0], [28, 7882, 39, 17], [], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 1264, 18], [8, 7900, 20, 16], [0, 0, 0, 0], [28, 7900, 58, 17], [], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 1264, 18], [8, 7918, 20, 16], [0, 0, 0, 0], [28, 7918, 77, 17], [], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 1264, 18], [8, 7936, 20, 16], [0, 0, 0, 0], [28, 7936, 64, 17], [], [8, 7954, 1264, 0], [576, 0, 704, 34], [8, 7954, 0, 0], [7, 7953, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "scrollRects": [[], [0, 0, 1508, 7962], [0, 7242, 1508, 7962], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7946], [0, 0, 1500, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [0, 0, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [0, 0, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1500, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [0, 0, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [0, 0, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [0, 0, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1500, 4700], [0, 0, 1500, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1500, 4459], [0, 0, 1500, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1500, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1500, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1500, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [0, 0, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [0, 0, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 702, 56], [0, 0, 0, 0], [0, 0, 86, 18], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "clientRects": [[], [0, 0, 1280, 7962], [0, 0, 1280, 720], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7946], [0, 0, 1264, 7874], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1632], [0, 0, 1264, 1408], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1282], [0, 0, 1264, 1282], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 54], [0, 0, 1264, 18], [], [0, 0, 1264, 36], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [0, 0, 1264, 224], [0, 0, 1264, 57], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 21], [0, 0, 1264, 21], [2, 2, 80, 17], [0, 0, 68, 15], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 53], [0, 0, 1264, 21], [2, 2, 88, 17], [0, 0, 76, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 6242], [0, 0, 1264, 1542], [0, 0, 1264, 1542], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 1282], [0, 0, 0, 0], [0, 0, 1264, 1264], [0, 0, 1264, 1264], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [], [0, 0, 1264, 96], [0, 0, 1264, 19], [0, 0, 1264, 19], [2, 2, 29, 15], [0, 0, 17, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 76], [0, 0, 1264, 55], [2, 2, 71, 30], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 59, 15], [0, 0, 0, 0], [], [0, 0, 59, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 21], [2, 2, 64, 17], [0, 0, 52, 15], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 4700], [0, 0, 1264, 4700], [0, 0, 1264, 146], [0, 0, 1264, 146], [0, 0, 1264, 114], [0, 0, 1264, 114], [0, 0, 1264, 96], [0, 0, 1264, 96], [0, 0, 96, 96], [0, 0, 1264, 18], [], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 32], [0, 0, 1264, 14], [0, 0, 18, 14], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 4459], [0, 0, 1264, 4459], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 506], [0, 0, 1264, 50], [0, 0, 1264, 50], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 0], [0, 0, 1264, 440], [0, 0, 1264, 440], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 0, 0], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 88], [0, 0, 1264, 18], [0, 0, 1264, 18], [], [0, 0, 1264, 70], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 1264, 16], [0, 0, 16, 16], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 18], [], [0, 0, 1264, 3799], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 3731], [0, 0, 1264, 608], [0, 0, 0, 0], [], [], [0, 0, 1264, 540], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 16, 18], [0, 0, 16, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1224, 54], [0, 0, 24, 18], [0, 0, 24, 18], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 1224, 18], [0, 0, 0, 0], [0, 0, 1224, 18], [], [], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [0, 0, 1264, 3123], [0, 0, 1500, 1000], [0, 0, 60, 18], [0, 0, 1200, 1200], [0, 0, 735, 919], [0, 0, 1264, 34], [2, 2, 88, 30], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 76, 15], [0, 0, 0, 0], [], [0, 0, 76, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 93, 30], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 81, 15], [0, 0, 0, 0], [], [0, 0, 81, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 121, 30], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 109, 15], [0, 0, 0, 0], [], [0, 0, 109, 13], [0, 0, 17, 13], [0, 0, 0, 0], [2, 2, 75, 30], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 63, 15], [0, 0, 0, 0], [], [0, 0, 63, 13], [0, 0, 17, 13], [0, 0, 0, 0], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 136], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 34], [0, 0, 1264, 16], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 1264, 18], [], [0, 0, 1264, 102], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 34], [0, 0, 1264, 18], [], [0, 0, 1264, 16], [0, 0, 14, 16], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [0, 0, 1264, 95], [1, 1, 180, 55], [0, 0, 1264, 0], [0, 0, 1264, 37], [2, 2, 185, 32], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 173, 15], [0, 0, 0, 0], [], [0, 0, 173, 15], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 173, 0], [0, 0, 0, 0], [], [0, 0, 0, 0], [], [2, 2, 33, 19], [0, 0, 21, 17], [0, 0, 21, 17], [0, 0, 0, 0], [0, 0, 1264, 0], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 72], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 18], [0, 0, 1264, 18], [0, 0, 0, 0], [0, 0, 1264, 18], [0, 0, 20, 16], [0, 0, 0, 0], [0, 0, 0, 0], [], [0, 0, 1264, 0], [1, 1, 702, 32], [0, 0, 0, 0], [0, 0, 1, 1], [], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, "textBoxes": {"layoutIndex": [32, 37, 40, 42, 51, 59, 67, 75, 81, 83, 89, 99, 107, 130, 138, 159, 164, 179, 189, 196, 207, 215, 225, 232, 247, 254, 256, 258, 265, 272, 274, 276, 283, 290, 292, 294, 301, 308, 310, 312, 319, 326, 328, 330, 340, 346, 351, 357, 359, 366, 367, 373, 379, 381, 388, 389, 395, 401, 403, 410, 411, 417, 423, 425, 432, 433, 439, 445, 447, 454, 455, 461, 467, 469, 476, 477, 483, 489, 491, 498, 499, 505, 511, 513, 520, 521, 527, 533, 535, 542, 543, 549, 555, 557, 564, 565, 570, 582, 591, 600, 609, 625, 629, 635, 641, 663, 670, 672, 688, 696, 704, 712, 717], "bounds": [[8, 1272, 65.765625, 17], [8, 1290, 79.234375, 17], [8, 1308, 24.890625, 17], [8, 1326, 5.328125, 17], [28, 1344, 39.109375, 17], [28, 1362, 57.765625, 17], [28, 1380, 77.46875, 17], [28, 1398, 64.4375, 17], [8, 1416, 48.765625, 17], [8, 1434, 240.265625, 17], [16, 1455, 68.171875, 15], [8, 1569, 151.078125, 17], [32.65625, 1590, 59.28125, 15], [8, 1736, 151.078125, 17], [8, 1768, 29.328125, 17], [28, 3050, 30.21875, 17], [8, 3068, 52.4375, 17], [16, 3108.328125, 59.28125, 15], [32.65625, 3142.65625, 35.578125, 15], [32.65625, 3163.65625, 35.578125, 15], [8, 3277.65625, 151.078125, 17], [8, 3309.65625, 29.328125, 17], [8, 3327.65625, 408.765625, 17], [8, 3377.65625, 86.640625, 17], [8, 3411.65625, 432.25, 17], [8, 3445.65625, 78.203125, 17], [8, 3463.65625, 5.328125, 17], [8, 3481.65625, 8, 17], [8, 3499.65625, 456.84375, 17], [8, 3533.65625, 107.5, 17], [8, 3551.65625, 5.328125, 17], [8, 3569.65625, 8, 17], [8, 3587.65625, 405.859375, 17], [8, 3621.65625, 119.984375, 17], [8, 3639.65625, 5.328125, 17], [8, 3657.65625, 8, 17], [8, 3675.65625, 413.734375, 17], [8, 3709.65625, 47.09375, 17], [8, 3727.65625, 5.328125, 17], [8, 3745.65625, 8, 17], [8, 3763.65625, 272.40625, 17], [8, 3797.65625, 87.078125, 17], [8, 3815.65625, 5.328125, 17], [8, 3833.65625, 8, 17], [8, 3867.65625, 49.765625, 17], [8, 3885.65625, 408.265625, 17], [32, 3919.65625, 16, 17], [48, 3919.65625, 238.5, 17], [286.5, 3919.65625, 594.140625, 17], [48, 3937.65625, 8, 17], [48, 3955.65625, 4, 17], [32, 3973.65625, 16, 17], [48, 3973.65625, 247.078125, 17], [295.078125, 3973.65625, 614.5, 17], [48, 3991.65625, 8, 17], [48, 4009.65625, 4, 17], [32, 4027.65625, 16, 17], [48, 4027.65625, 148.421875, 17], [196.421875, 4027.65625, 456.28125, 17], [48, 4045.65625, 8, 17], [48, 4063.65625, 4, 17], [32, 4081.65625, 16, 17], [48, 4081.65625, 168.40625, 17], [216.40625, 4081.65625, 555.640625, 17], [48, 4099.65625, 8, 17], [48, 4117.65625, 4, 17], [32, 4135.65625, 16, 17], [48, 4135.65625, 149.5, 17], [197.5, 4135.65625, 392.421875, 17], [48, 4153.65625, 8, 17], [48, 4171.65625, 4, 17], [32, 4189.65625, 16, 17], [48, 4189.65625, 368.015625, 17], [416.015625, 4189.65625, 579.703125, 17], [48, 4207.65625, 8, 17], [48, 4225.65625, 4, 17], [32, 4243.65625, 16, 17], [48, 4243.65625, 213.796875, 17], [261.796875, 4243.65625, 968.625, 17], [48, 4261.65625, 8, 17], [48, 4279.65625, 4, 17], [32, 4297.65625, 16, 17], [48, 4297.65625, 151.078125, 17], [199.078125, 4297.65625, 482.921875, 17], [48, 4315.65625, 8, 17], [48, 4333.65625, 4, 17], [32, 4351.65625, 16, 17], [48, 4351.65625, 145.140625, 17], [193.140625, 4351.65625, 730.734375, 17], [48, 4369.65625, 8, 17], [48, 4387.65625, 4, 17], [24, 4405.65625, 24, 17], [48, 4405.65625, 91.984375, 17], [139.984375, 4405.65625, 610.765625, 17], [48, 4423.65625, 8, 17], [48, 4441.65625, 4, 17], [8, 4475.65625, 582.4375, 17], [16, 7619.65625, 76.3125, 15], [108.3125, 7619.65625, 81.25, 15], [205.5625, 7619.65625, 109.40625, 15], [330.96875, 7619.65625, 62.96875, 15], [8, 7666.984375, 48.875, 17], [8, 7684.984375, 310.953125, 17], [8, 7718.984375, 360.34375, 17], [8, 7752.984375, 344.75, 17], [16, 7848.640625, 173.359375, 15], [72.296875, 7863.640625, 41.5, 15], [113.796875, 7863.640625, 19.265625, 15], [28, 7881.640625, 39.109375, 17], [28, 7899.640625, 57.765625, 17], [28, 7917.640625, 77.46875, 17], [28, 7935.640625, 64.4375, 17], [7, 7952.640625, 85.765625, 17]], "start": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "length": [10, 10, 4, 1, 4, 8, 10, 10, 7, 35, 10, 21, 8, 21, 4, 3, 8, 9, 5, 5, 21, 4, 62, 12, 66, 11, 1, 1, 69, 16, 1, 1, 61, 16, 1, 1, 61, 8, 1, 1, 40, 12, 1, 1, 6, 63, 3, 33, 94, 1, 1, 3, 31, 97, 1, 1, 3, 20, 73, 1, 1, 3, 23, 87, 1, 1, 3, 21, 62, 1, 1, 3, 51, 89, 1, 1, 3, 29, 148, 1, 1, 3, 21, 76, 1, 1, 3, 22, 113, 1, 1, 4, 14, 94, 1, 1, 90, 12, 12, 17, 10, 7, 48, 56, 54, 30, 7, 4, 4, 8, 10, 10, 13]}, "scrollOffsetX": 0, "scrollOffsetY": 7242, "contentWidth": 1508, "contentHeight": 7962}], "strings": ["about:blank", "Perplexity AI", "UTF-8", "117756C4164AF9036785CA92E818D86A", "#document", "HTML", "HEAD", "bid", "4eb7fe1c-c20b-4e9d", "aria-roledescription", "", "aria-description", "STYLE", "type", "text/css", "eef1c1e5-01ac-4f87", "", "#text", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "data-merge-styles", "true", "aa20f67b-9623-4ae9", "", "f6a7ffe0-7d5b-410b", "", "940c62de-542f-4976", "", "TITLE", "c9f309ef-87ed-4d44", "", "META", "charset", "utf-8", "bbb4446d-1146-4127", "", "name", "description", "content", "Perplexity AI unlocks the power of knowledge with information discovery and sharing.", "566a0b1d-7edb-490c", "", "viewport", "width=device-width, initial-scale=1.0, maximum-scale=1.0", "22e52b0e-06c3-4db0", "", "next-head-count", "4", "06db0b81-c41c-45cb", "", "956306f3-5825-46dc", "", ":root, :host {\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Solid\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Regular\";\n --fa-font-light: normal 300 1em/1 \"Font Awesome 6 Light\";\n --fa-font-thin: normal 100 1em/1 \"Font Awesome 6 Thin\";\n --fa-font-duotone: normal 900 1em/1 \"Font Awesome 6 Duotone\";\n --fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 6 Sharp\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}", "LINK", "rel", "icon", "href", "/static/icons/favicon.ico", "59d6e6ad-6525-4b7d", "", "image/png", "sizes", "32x32", "/static/icons/favicon-32x32.png", "f2a4b88f-9ac1-4a1f", "", "96x96", "/static/icons/favicon-96x96.png", "2c6bce7e-9402-43ea", "", "16x16", "/static/icons/favicon-16x16.png", "c22395fa-4a20-4a49", "", "apple-touch-icon", "57x57", "/static/icons/apple-icon-57x57.png", "dc42c2c3-e086-4e17", "", "60x60", "/static/icons/apple-icon-60x60.png", "a632bdba-bb64-4bd5", "", "72x72", "/static/icons/apple-icon-72x72.png", "478a16ee-7a95-4049", "", "76x76", "/static/icons/apple-icon-76x76.png", "ee87511b-935c-464b", "", "114x114", "/static/icons/apple-icon-114x114.png", "96dec634-80b6-4cf6", "", "120x120", "/static/icons/apple-icon-120x120.png", "4ab3c532-8427-43cf", "", "144x144", "/static/icons/apple-icon-144x144.png", "3f2987bc-0f45-4f73", "", "152x152", "/static/icons/apple-icon-152x152.png", "e215e71e-4f99-470a", "", "180x180", "/static/icons/apple-icon-180x180.png", "4e5cb84f-55f2-4643", "", "192x192", "/static/icons/android-icon-192x192.png", "c400aabc-f4f1-426d", "", "search", "application/opensearchdescription+xml", "/opensearch.xml", "title", "Perlexity Open Search", "26b373fa-6a0d-4247", "", "manifest", "/manifest.json", "7b934a12-4667-4617", "", "theme-color", "#ffffff", "media", "(prefers-color-scheme: light)", "6e4c5d62-dd5c-48d8", "", "#171719", "(prefers-color-scheme: dark)", "16138d69-dffe-404d", "", "SCRIPT", "src", "https://accounts.google.com/gsi/client", "data-client_id", "60244564555-30175ip7vg79fobh0rk1sur3pdutj9l1.apps.googleusercontent.com", "async", "defer", "1e505996-bef5-4ba6", "", "preload", "/_next/static/media/8a2087b8c2d99150-s.p.woff2", "as", "font", "font/woff2", "crossorigin", "anonymous", "data-next-font", "size-adjust", "9e91b95f-ee28-46f0", "", "/_next/static/media/a428f5fd48328375-s.p.woff2", "3ef24df4-2fa6-4e26", "", "/_next/static/media/0cf0e55cc0ef3777-s.p.woff2", "2ac790dc-d748-49ff", "", "/_next/static/media/6b34195113eedf8f-s.p.woff2", "372b8767-0c08-43cc", "", "/_next/static/media/f93ec3e02f92692c-s.p.woff2", "ce569a4f-dd1d-48ce", "", "/_next/static/media/87efa1b92b3900d1-s.p.woff2", "666462e5-1af6-4b88", "", "/_next/static/media/560d0dc937e89811-s.p.woff2", "7aba86eb-0b07-4e1d", "", "/_next/static/media/916d3686010a8de2-s.p.woff2", "a074ca6a-8cef-4084", "", "/_next/static/media/7777133e901cd5ed-s.p.woff2", "cad6c5d2-ab77-4aff", "", "/_next/static/media/d869208648ca5469-s.p.woff2", "eea34fdd-b9d1-4429", "", "/_next/static/media/9a881e2ac07d406b-s.p.woff2", "9014d687-ad5d-4f86", "", "id", "dark-or-light-mode", "data-nscript", "beforeInteractive", "75a3d182-d291-4a54", "", "\n // On page load or when changing themes,\n // best to add inline in head to avoid FOUC\n if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n\n // listening for theme changing from system\n if(!localStorage.theme) {\n window\n .matchMedia(\"(prefers-color-scheme: dark)\")\n .addEventListener(\"change\", function (e) {\n const colorScheme = e.matches ? \"dark\" : \"light\";\n\n if (colorScheme === \"dark\") {\n document.documentElement.classList.add('dark')\n } else {\n document.documentElement.classList.remove('dark')\n }\n });\n }\n ", "/_next/static/css/81636b3f68064e14.css", "style", "d1e3160e-3311-47e0", "", "stylesheet", "data-n-g", "78dcf573-82d5-412a", "", "NOSCRIPT", "data-n-css", "36abd075-9eac-427e", "", "nomodule", "/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js", "ea24bee2-ab86-4021", "", "/_next/static/chunks/webpack-c12c5b5a4493a09f.js", "343e61e5-3371-441d", "", "/_next/static/chunks/framework-ce84985cd166733a.js", "d9d56c53-4e56-456e", "", "/_next/static/chunks/main-4122e488bf26bdf5.js", "e413edcd-ecc1-47d9", "", "/_next/static/chunks/pages/_app-69b609ea03b60a7e.js", "6eaaeb76-db9e-4690", "", "/_next/static/chunks/9f64d4f8-553c63e75ee2f1ca.js", "b4dfa195-9ace-4574", "", "/_next/static/chunks/2cca2479-a8aba50f08d9252e.js", "183cb809-fb98-4487", "", "/_next/static/chunks/9359-ff89a210499afb07.js", "3a3d06f0-914a-4407", "", "/_next/static/chunks/1982-7dd6475b3a52f6bf.js", "5144ecdb-306b-4691", "", "/_next/static/chunks/pages/index-fe13b960fc98ea08.js", "2bf39fd0-6834-4775", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_buildManifest.js", "75175126-9d0e-4c97", "", "/_next/static/ILYVtAPk5JEzit9SpB2YZ/_ssgManifest.js", "773861a0-de95-487b", "", "googleidentityservice_button_styles", "7f26368d-87cf-4e93", "", ".qJTHM{-webkit-user-select:none;color:#202124;direction:ltr;-webkit-touch-callout:none;font-family:\"Roboto-Regular\",arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;margin:0;overflow:hidden;-webkit-text-size-adjust:100%}.ynRLnc{left:-9999px;position:absolute;top:-9999px}.L6cTce{display:none}.bltWBb{word-break:break-all}.hSRGPd{color:#1a73e8;cursor:pointer;font-weight:500;text-decoration:none}.Bz112c-W3lGp{height:16px;width:16px}.Bz112c-E3DyYd{height:20px;width:20px}.Bz112c-r9oPif{height:24px;width:24px}.Bz112c-uaxL4e{-webkit-border-radius:10px;border-radius:10px}.LgbsSe-Bz112c{display:block}.S9gUrf-YoZ4jf,.S9gUrf-YoZ4jf *{border:none;margin:0;padding:0}.fFW7wc-ibnC6b>.aZ2wEe>div{border-color:#4285f4}.P1ekSe-ZMv3u>div:nth-child(1){background-color:#1a73e8!important}.P1ekSe-ZMv3u>div:nth-child(2),.P1ekSe-ZMv3u>div:nth-child(3){background-image:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7)),linear-gradient(to right,#1a73e8,#1a73e8)!important}.haAclf{display:inline-block}.nsm7Bb-HzV7m-LgbsSe{-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .218s,border-color .218s;transition:background-color .218s,border-color .218s;-webkit-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #dadce0;color:#3c4043;cursor:pointer;font-family:\"Google Sans\",arial,sans-serif;font-size:14px;height:40px;letter-spacing:0.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;width:auto}@media screen and (-ms-high-contrast:active){.nsm7Bb-HzV7m-LgbsSe{border:2px solid windowText;color:windowText}}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe{font-size:14px;height:32px;letter-spacing:0.25px;padding:0 10px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe{font-size:11px;height:20px;letter-spacing:0.3px;padding:0 8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe{padding:0;width:40px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe{width:32px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe{width:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK{-webkit-border-radius:20px;border-radius:20px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe{-webkit-border-radius:16px;border-radius:16px}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe{-webkit-border-radius:10px;border-radius:10px}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc{border:none;color:#fff}.nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc{background-color:#1a73e8}.nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc{background-color:#202124;color:#e8eaed}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:18px;margin-right:8px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:14px;min-width:14px;width:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{height:10px;min-width:10px;width:10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin-left:8px;margin-right:-4px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:10px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:8px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c{padding:4px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;-webkit-align-items:center;align-items:center;background-color:#fff;height:36px;margin-left:-10px;margin-right:12px;min-width:36px;width:36px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c,.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsSe-Bz112c{margin:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:28px;margin-left:-8px;margin-right:10px;min-width:28px;width:28px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{height:16px;margin-left:-6px;margin-right:8px;min-width:16px;width:16px}.nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:3px;border-radius:3px;margin-left:2px;margin-right:0;padding:0}.nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:14px;border-radius:14px}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:8px;border-radius:8px}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-flex-direction:row;flex-direction:row;justify-content:space-between;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;position:relative;width:100%}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX{justify-content:center}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:1;flex-grow:1;font-family:\"Google Sans\",arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-weight:300}.nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId{-webkit-flex-grow:0;flex-grow:0}.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe{-webkit-transition:background-color .218s;transition:background-color .218s;bottom:0;left:0;position:absolute;right:0;top:0}.nsm7Bb-HzV7m-LgbsSe:hover,.nsm7Bb-HzV7m-LgbsSe:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#d2e3fc;outline:none}.nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.04)}.nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(66,133,244,.1)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe,.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.24)}.nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe{background:rgba(255,255,255,.32)}.nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY{-webkit-border-radius:50%;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:flex;height:20px;margin-left:-4px;margin-right:8px;min-width:20px;width:20px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId{font-family:\"Roboto\";font-size:12px;text-align:left}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf,.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS{overflow:hidden;text-overflow:ellipsis}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;color:#5f6368;fill:#5f6368;font-size:11px;font-weight:400}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff{color:#e8eaed;fill:#e8eaed}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c{height:18px;margin:-3px -3px -3px 2px;min-width:18px;width:18px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-top-left-radius:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;margin-left:12px;margin-right:-10px}.nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf{-webkit-border-radius:18px;border-radius:18px}.L5Fo6c-sM5MNb{border:0;display:block;left:0;position:relative;top:0}.L5Fo6c-bF1uUb{-webkit-border-radius:4px;border-radius:4px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0}.L5Fo6c-bF1uUb:focus{border:none;outline:none}sentinel{}", "script", "prefetch", "/_next/static/chunks/2085-9edc8ddf9edcf2c3.js", "803eff4d-5005-4b1f", "", "/_next/static/chunks/pages/privacy-3184dfab7ba25bd2.js", "7317ca39-9205-4f7e", "", "/_next/static/chunks/pages/tos-d8de03ae66c768b8.js", "b5993cb2-f883-4002", "", "/_next/static/chunks/pages/blog-a64b2f13cd50f419.js", "47eb4d8d-3650-4cb3", "", "/_next/static/chunks/pages/settings-35ce16d068969875.js", "1425721f-22c8-4403", "", "/_next/static/chunks/pages/pro-432b69addaa957ab.js", "5bbeed9b-73f8-41d5", "", "/_next/static/chunks/pages/profile-270e6d31beaf8300.js", "5287d2ff-2d12-4129", "", "/_next/static/chunks/120-807e22fb11d4ec3a.js", "ed9229f3-0bfe-4dc0", "", "/_next/static/chunks/pages/discover-8c956d583813b594.js", "ac2a9fc7-e52e-495a", "", "/_next/static/chunks/29107295-54c46f60208f68c8.js", "a3e2d7ed-a1c6-47f7", "", "/_next/static/chunks/pages/threads-7db5c381fb3849f2.js", "40076f69-3904-4b1b", "", "/_next/static/chunks/pages/about-b7a50de00d98d97f.js", "4532c193-3875-41cd", "", "BODY", "ff27f266-dc2e-4151", "", "DIV", "__next", "ddbf4ca9-ff11-49fd", "", "MAIN", "class", "__variable_5fe199 __variable_d040e4 __variable_3bfef9", "391f09cb-5e0a-4e5d", "", "min-h-[100vh] h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "5a04f383-796a-4127", "", "flex h-full min-h-[100vh]", "996d6026-4ca0-47d3", "", "hidden md:block border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "af0a8880-ad2e-472e", "", "transition-all duration-300 ease-in-out group/bar w-sideBarWidth", "caf22395-5bde-4e91", "", "h-full fixed z-20 transition-all duration-300 ease-in-out w-sideBarWidth border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "88e8b01b-41f2-4c04", "", "pt-[12px] pb-sm sticky top-0 flex justify-between flex-col h-full", "c74194a8-4f3b-4d9e", "", "grow mt-xs", "037acfc1-735d-4416", "", "flex items-center justify-between mb-lg", "70dd8b20-52e5-4471", "", "A", " block ", "/", "07ad311f-84fd-4083", "", "pr-sm pl-lg", "363b8839-6c9e-4311", "", "flex items-center space-x-sm", "273b3cf4-d185-4f9c", "", "super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "85c3c4ac-f5e1-45fe", "", "h-auto duration-300 rounded-md overflow-hidden group w-6 md:w-6", "485bff6c-71bc-45d2", "", "svg", "viewBox", "0 0 1024 1024", "xmlns", "http://www.w3.org/2000/svg", "5d905c1c-3feb-46f9", "", "rect", "width", "1024", "height", "fill-zinc-900 dark:fill-zinc-300 ", "1e010617-c7a5-4b09", "", "fill-zinc-50 dark:fill-zinc-900 duration-1000", "d6b50cad-c9db-4061", "", "circle", "cx", "512.408", "cy", "511.592", "r", "65.236", "98559116-7ffa-42ae", "", "731.764", "781f99a4-37e6-49ed", "", "292.236", "eb67453d-003a-4925", "", "fc947796-58cf-4064", "", "f2bbe1b5-fa2b-4a1a", "", "e174c16a-f30a-464c", "", "732.579", "b73dc5c9-a1c4-425a", "", "01a76176-e6ac-4a65", "", "955d49ba-418d-4785", "", "default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "7d44eabd-3872-49d2", "", "font-display font-semibold select-none text-[24px] md:text-[22px]", "44544999-c82e-4380", "", "Perplexity", "my-md pt-two", "17ec846e-d70c-4e39", "", "c7ec3b2b-6921-41ff", "", "border rounded-full pl-md pr-sm py-sm flex flex-none justify-between items-center mx-lg cursor-pointer group ring-2 ring-transparent hover:border-white hover:!ring-super transition duration-300 select-none border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "2bcca082-6e74-485f", "", "text-clip overflow-hidden line-clamp-1 light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0f76cf94-c0ba-497b", "", "New Thread", "flex items-center space-x-two light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f4aae869-e399-41e3", "", " rounded-md min-w-5 h-5 flex items-center px-xs justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4cffa24d-ddb1-475b", "", "Ctrl", "font-mono rounded-md w-5 h-5 flex items-center justify-center border border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fd642430-0eab-4fc7", "", "I", "items-center relative space-y-sm", "609d0ff9-865e-4a70", "", "relative items-center gap-x-sm", "dca1a8d4-dbec-4033", "", "px-sm md overflow-hidden transition duration-300 relative flex items-center", "6dbb2102-0400-4a3a", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-base px-md font-medium h-10", "-webkit-tap-highlight-color: transparent;", "66a479f2-7478-4cd3", "", "flex items-center leading-none justify-start gap-xs", "fcbbdce8-325e-4fb1", "", "aria-hidden", "focusable", "false", "data-prefix", "fass", "data-icon", "house-chimney", "svg-inline--fa fa-house-chimney fa-fw fa-1x ", "role", "img", "0 0 576 512", "fb79d6d7-c99c-4796", "", "path", "fill", "currentColor", "d", "M576 287.6H511.8l1 224.4H472 456 352V352H224V512H120 104 64.1V474.8c-.1-.9-.1-1.8-.1-2.8V360c0-.9 0-1.9 .1-2.8V287.6H0V240L288.4 0 416 106.5V32h96V186.6L576 240v47.6z", "30953a4d-72f2-4804", "", "SPAN", "flex items-center relative ", "0f26e889-69fa-4d88", "", "Home", "fe9e82de-1de2-4fdb", "", "8b8a58c1-a320-418a", "", "/discover", "7d06a2ac-b8e8-4cbb", "", "b5c03e9f-955b-42fc", "", "compass", "svg-inline--fa fa-compass fa-fw fa-1x ", "0 0 512 512", "2e5d73ba-14b5-43fd", "", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM128 384l64-192 192-64L320 320 128 384zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z", "c06eb8e5-5013-469c", "", "8d529989-4bb0-42a8", "", "Discover", "04a6a87f-c546-4244", "", "8f677685-65d3-4ce4", "", "/threads", "2d4471a3-e86d-40f1", "", "2b145999-af7f-4d6b", "", "layer-group", "svg-inline--fa fa-layer-group fa-fw fa-1x ", "ba293bf4-fbce-49c8", "", "M0 128L288 256 576 128 288 0 0 128zm104.6 81.5L0 256 288 384 576 256 471.4 209.5 288 291 104.6 209.5zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "aa421cb2-8d1b-4b12", "", "feaebc43-b9ae-4507", "", "My Threads", "8b5ab04f-8e77-4759", "", "f5677759-44b1-4b8d", "", "/profile", "df7bc167-4731-4949", "", "7dc4ffc4-461b-479a", "", "circle-nodes", "svg-inline--fa fa-circle-nodes fa-fw fa-1x ", "410cf753-380b-409b", "", "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z", "e8471ca5-9b2e-41fd", "", "517d0488-9b8c-4bcf", "", "AI Profile", "ml-md mt-md mr-md hidden md:block", "ed75583c-8e71-470c", "", "flex flex-col", "f287a34f-2ab5-42a3", "", "px-md pb-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "36c6155e-33ec-4206", "", "82dbb0b8-f945-4646", "", "inline default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a5615a98-483d-4172", "", "Try Pro", "light font-sans text-sm text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "65824a19-eeb1-4814", "", "More Copilot uses and GPT-4 access.", "mt-xs -ml-sm", "72afbc79-73e0-4b8a", "", "107dd14d-95a1-4d26", "", "BUTTON", "button", "md:hover:bg-offsetPlus text-super dark:md:hover:bg-offsetPlusDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "81e2f3c3-bdac-4883", "", "flex items-center leading-none justify-center gap-xs", "9a1f25dd-6492-4b96", "", "944d7fbc-75f9-48b5", "", "Learn More", "/settings", "877f7490-65a8-4c3f", "", "px-sm py-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7533b88f-9836-4637", "", "flex items-center rounded-full gap-x-sm py-xs pl-sm pr-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-transparent md:hover:bg-offsetPlus md:dark:hover:bg-offsetPlusDark", "ab76ccbe-7e21-4069", "", "relative", "89f24d4d-1369-445d", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-9 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "871146b1-38a9-458e", "", "IMG", "alt", "User avatar", "w-full h-auto", "https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail", "b673d2d2-5c66-4299", "", "7a7d59b2-2d19-405b", "", "flex items-center gap-x-xs relative", "75a1808d-a9da-45a1", "", "line-clamp-1 break-all default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79f5a38b-828f-46a5", "", "webtasksnavigator8343", "flex items-center gap-x-xs my-sm pt-sm px-sm border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "45c2f266-2ce1-429f", "", "8d1e8f4b-23fd-4bdb", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "8f079f1d-0c10-425b", "", "9906a892-7523-4974", "", "mobile-screen", "svg-inline--fa fa-mobile-screen fa-fw fa-1x ", "0 0 384 512", "d95c6b78-2660-4427", "", "M0 0H352V512H0V0zM128 432v32h16 64 16V432H208 144 128zM288 64H64V384H288V64z", "cbb09141-5b2d-4c2f", "", "bdc60858-c6f6-4a30", "", "Download", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "target", "_blank", "https://twitter.com/perplexity_ai", "12da51e3-4dae-48f9", "", "640434f3-ec49-4095", "", "fab", "twitter", "svg-inline--fa fa-twitter fa-fw fa-1x ", "16beb941-aec5-47e5", "", "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z", "be80859b-ec7a-40d4", "", "https://discord.gg/perplexity-ai", "71eb3e93-56ed-4427", "", "6af7dae7-33b1-4ecd", "", "discord", "svg-inline--fa fa-discord fa-fw fa-1x ", "0 0 640 512", "0662b221-0089-4f70", "", "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z", "a94a51ab-b369-4d68", "", "md:pb-md md:pr-md md:pt-sm grow", "596dd1c5-50b7-4dab", "", "md:rounded-3xl shadow-sm md:dark:border h-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "99a62f96-6364-402f", "", "md:flex justify-center h-full ", "2edf84d2-6e79-4ec2", "", "w-full mx-auto h-full", "196f9843-9577-4c93", "", "md:rounded-t-3xl py-sm mx-md sticky left-0 md:min-h-[53px] right-0 top-0 md:mb-0 z-20 border-b border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "0293ec9c-ad75-43fd", "", "flex items-center justify-between gap-x-md", "a63dc173-70a9-49f9", "", "hidden md:block", "23d6f05c-5d63-45d8", "", "flex items-center gap-x-md", "179a06dd-504d-4b06", "", " rounded-full border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0ac63989-0778-4fa9", "", "741f42e6-f416-4dcc", "", "37a8138b-46cb-4d6a", "", "aspect-square rounded-full overflow-hidden flex items-center justify-center w-5 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "0d401d8d-35bf-42b9", "", "b5e3c7bf-3dc3-438c", "", "165705fe-7dd8-419d", "", "flex items-center gap-x-sm border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "7be5960a-2b93-4606", "", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "98d3a4ea-7514-4162", "", "flex items-center gap-x-xs transition duration-300 select-none cursor-pointer hover:text-superAlt light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "76eee3ed-e0ef-405a", "", "02278f83-3033-4d80", "", "heart", "svg-inline--fa fa-heart fa-fw fa-sm ", "cc557e54-847d-48a4", "", "M64 288L39.8 263.8C14.3 238.3 0 203.8 0 167.8C0 92.8 60.8 32 135.8 32c36 0 70.5 14.3 96 39.8L256 96l24.2-24.2c25.5-25.5 60-39.8 96-39.8C451.2 32 512 92.8 512 167.8c0 36-14.3 70.5-39.8 96L448 288 256 480 64 288z", "35ec20dd-8991-4228", "", "933faa84-fc31-4c0d", "", "Like", "flex items-center gap-x-sm md:hidden", "7270f23e-e6eb-4cc8", "", "2879ae9b-7dff-4e72", "", "h-auto duration-300 rounded-md overflow-hidden group w-8 md:w-12", "6c476f38-747f-497b", "", "9112cdfa-979d-4c1e", "", "ba924cbf-5843-45dd", "", "465913e6-d19c-4cf3", "", "9137c0eb-cbc5-41cf", "", "784f54bf-bfc2-4257", "", "c2d4d4f2-ecab-4f9f", "", "62ee5dbd-4eb9-4be7", "", "4cebdd7e-d23f-4fc2", "", "f2c6d941-e197-43bf", "", "29eea344-4984-42c6", "", "77a496c2-ff81-47d9", "", "6de79056-a982-4d45", "", "bg-offsetPlus dark:bg-offsetPlusDark text-textMain dark:text-textMainDark md:hover:text-textOff md:dark:hover:text-textOffDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "70748759-129a-477d", "", "37545084-0b67-4ba8", "", "plus", "svg-inline--fa fa-plus fa-fw fa-1x ", "0 0 448 512", "a1c6babd-7180-44fb", "", "M240 80V48H176V80 224H32 0v64H32 176V432v32h64V432 288H384h32V224H384 240V80z", "ce68e2f4-44b9-456b", "", "4ed74d4f-9317-4d14", "", "New", "grow max-w-md text-center hidden md:block", "f2fdfe3b-4ebe-40da", "", "cursor-pointer hover:opacity-70 transition duration-300", "a8bde6f0-c791-4ab9", "", "px-sm py-sm light font-sans text-sm font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "0ef317a0-d30f-4c6d", "", "line-clamp-1", "46f82faf-6fcc-49ad", "", "Untitled", "flex items-center gap-x-sm", "8e9cc5d9-90c1-4be2", "", "-mr-xs", "b10a1eb6-94cb-4c83", "", "0e62c4a8-8c77-4621", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "3d4913c7-07cd-438d", "", "4853c5c0-270b-4dff", "", "ellipsis", "svg-inline--fa fa-ellipsis fa-fw fa-1x ", "594fcdcb-921b-4690", "", "M0 304l0-96 96 0 0 96L0 304zm160 0l0-96 96 0 0 96-96 0zm160-96l96 0 0 96-96 0 0-96z", "ed4d6c71-3fe2-461c", "", "transition-all duration-300 opacity flex items-center gap-x-xs md:gap-x-0 opacity-100", "51dc86ba-fd31-4ae5", "", "hidden md:flex items-center gap-x-sm", "3beaf557-e299-4a12", "", "a81690e3-843a-41ca", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 top-[120%] -translate-y-1", "7ab4c9a3-b067-4190", "", "py-xs px-sm rounded-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlusDark", "3ecc6a74-596b-4593", "", "default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "50316098-65c7-454f", "", "text-zinc-200", "7747ec14-5a7a-4350", "", "Copy Link", "0daeeef2-340d-47fc", "", "link", "svg-inline--fa fa-link fa-fw fa-1x ", "50a7e4a4-a01e-4408", "", "M580.2 267.3c56.2-56.2 56.2-147.4 0-203.6S432.8 7.4 376.6 63.7L365.3 75l45.3 45.3 11.3-11.3c31.2-31.2 81.9-31.2 113.1 0s31.2 81.9 0 113.1L421.8 335.2c-31.2 31.2-81.9 31.2-113.1 0c-25.6-25.6-30.3-64.3-13.8-94.6c1.8-3.4 3.9-6.7 6.3-9.8l-51.2-38.4c-4.3 5.7-8.1 11.6-11.4 17.8c-29.5 54.6-21.3 124.2 24.9 170.3c56.2 56.2 147.4 56.2 203.6 0L580.2 267.3zM59.8 244.7c-56.2 56.2-56.2 147.4 0 203.6s147.4 56.2 203.6 0L274.7 437l-45.3-45.3-11.3 11.3c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1L218.2 176.8c31.2-31.2 81.9-31.2 113.1 0c25.6 25.6 30.3 64.3 13.8 94.6c-1.8 3.4-3.9 6.7-6.3 9.8l51.2 38.4c4.3-5.7 8.1-11.6 11.4-17.8c29.5-54.6 21.3-124.2-24.9-170.3c-56.2-56.2-147.4-56.2-203.6 0L59.8 244.7z", "f65c115f-cca5-4d4a", "", "c044a2c0-9e6d-4de6", "", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "240fb9a2-41c6-49ee", "", "b1857b8a-6997-447e", "", "share", "svg-inline--fa fa-share fa-fw fa-1x ", "f57dff21-e45a-44c0", "", "M512 208L320 384H288V288H208c-61.9 0-112 50.1-112 112c0 48 32 80 32 80s-128-48-128-176c0-97.2 78.8-176 176-176H288V32h32L512 208z", "55404e7e-5ece-44fc", "", "9678c18d-b01c-46f9", "", "Share", "block md:hidden", "f76757d3-e80a-43e2", "", "172a1441-54ac-45ee", "", "729e5a61-6968-4bdf", "", "4bad35dc-7396-45bb", "", "f32398a2-2d26-4678", "", "5c11555f-5530-4b8e", "", "flex flex-col pt-lg pb-[124px] px-md md:px-lg", "59b3bca9-16ea-42a2", "", "items-center w-full h-full md:mx-auto max-w-screen-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "23a07765-4b6f-4cc3", "", "md:hidden mb-sm", "4c9deae6-9633-497f", "", "b72ef0a7-2c00-47c6", "", "4feb5de0-880e-40fe", "", "4d04d67d-345b-4ae3", "", "25576f8f-ef67-4ce9", "", "cf026042-0851-46ec", "", "4644ef69-0b8b-4b26", "", "552ee758-830c-4ca5", "", "94e83aac-1ee3-41b0", "", "176914ae-974f-4078", "", "fe1e92db-f7d7-4aa2", "", "6299928b-7c03-4d22", "", "12d64234-c6fe-4b37", "", "521e8902-baf0-4e97", "", "0120a5b6-a4b8-42f9", "", "e3c58a3b-6130-4e6c", "", "c8d363cd-dad7-4343", "", "5e7727d2-0cc4-4b4a", "", "48aefdf4-5e5f-444b", "", "pb-md mb-md border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "fb1065f0-4be2-4478", "", "fcdc638d-d113-4cc8", "", "5df3a481-a910-4a30", "", "mb-md", "323c736f-d631-435a", "", "break-words [word-break:break-word] whitespace-pre-line default font-sans text-2xl font-semibold text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "03ad161a-44a1-4905", "", "Find me some Easy breakfast recipe that requires minimal time.", "mb-lg border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "9c7be7cc-0dd0-4522", "", "flex items-center", "ac182ce0-1577-439c", "", "flex items-center gap-x-sm super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "8558afe9-c0d2-411e", "", "bolt", "svg-inline--fa fa-bolt ", "06f9f96c-ff49-420a", "", "M16 288L320 0 260.7 197.6 432 224 128 512l59.3-197.6L16 288z", "d8b27842-14d9-45a7", "", "P", "bcf43bb7-33c1-4fc1", "", "Quick Search", "space-y-md mt-md", "fe7b0910-2cc5-4f44", "", "animate-in fade-in duration-1000", "370e6816-b4f3-441e", "", "taco flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "0fbe2b99-558b-426e", "", "rounded-full animate-in zoom-in-50 duration-1000 ease-in-out", "04aaa56e-a419-4924", "", "default font-sans text-sm font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "6223cdd8-eabd-4603", "", "700298e9-eb11-458a", "", "grow default font-sans text-sm text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "5fde6a21-a20f-4c16", "", "grid grid-cols-2 gap-sm md:grid-cols-4", "a73f94e4-2be1-468e", "", "https://www.tasteofhome.com/collection/5-ingredient-easy-breakfast-ideas/", "noopener noreferrer", "flex group items-stretch ", "a296e17a-3fbf-4fbe", "", "flex group items-stretch cursor-pointer w-full relative min-h-[52px]", "40223ff2-ec67-44bb", "", "rounded-md px-sm pt-sm pb-xs flex w-full ring-1 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-background dark:bg-backgroundDark md:hover:bg-offset md:dark:hover:bg-offsetDark", "45a2b5e0-6e0f-4609", "", "relative z-10 flex flex-col justify-between h-full pointer-events-none select-none", "ec685cad-2276-4dfe", "", "b46f8877-710e-4581", "", "inline line-clamp-1 grow default font-sans text-xs font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "c3a6512d-dbb1-404e", "", "42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Home", "flex items-center space-x-xs ", "56bb96c0-9d6f-439e", "", "flex items-center gap-x-xs border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "caac51c4-cf29-4be9", "", "ed315a3b-3fbb-4535", "", "rounded-full overflow-hidden", "12a3f3bd-35fd-48e4", "", "block w-[16px] h-[16px]", "https://www.google.com/s2/favicons?sz=128&domain=tasteofhome.com", "tasteofhome.com favicon", "16", "ef7e2444-275e-41cb", "", " duration-300 transition-all line-clamp-1 break-all light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "1a80d0e3-e2e4-4443", "", "tasteofhome", "light font-sans text-base font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "a48a9f2d-2e92-431a", "", "\u00b7", "light font-sans text-xs font-medium text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "127e909d-96b9-4103", "", "1", "https://www.favfamilyrecipes.com/breakfast-quesadillas-2/", "fec27fa8-aef4-42a9", "", "a917b887-1bea-4203", "", "d62b89c4-22f1-4177", "", "9fdafbad-19d2-4ad2", "", "676aea97-b445-4e7e", "", "afb00160-bf5d-4cee", "", "33+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)", "0bda2a5c-95d2-426f", "", "fefe87b1-9278-4e85", "", "2bca0f26-f911-4e14", "", "62996fea-cc04-4c37", "", "https://www.google.com/s2/favicons?sz=128&domain=favfamilyrecipes.com", "favfamilyrecipes.com favicon", "d0f59419-2518-4654", "", "5e70e550-40d9-4557", "", "favfamilyrecipes", "c6588d87-4279-4789", "", "08f2aedb-ea0b-42ce", "", "2", "https://www.goodhousekeeping.com/food-recipes/easy/g871/quick-breakfasts/", "781a4dea-b71f-4339", "", "9ab0924f-002a-4131", "", "41332a3e-8183-42b7", "", "fb5bd943-9d4b-498b", "", "91c48008-66f6-4822", "", "7fc3a830-7aea-4b6b", "", "36 Quick and Easy Breakfast Ideas to Start Your Day Off Right", "c69d470c-b20e-43c0", "", "89a25add-4f94-4257", "", "95219df4-5558-4819", "", "5683a5bd-85e2-4b20", "", "https://www.google.com/s2/favicons?sz=128&domain=goodhousekeeping.com", "goodhousekeeping.com favicon", "4b8a4caa-fa92-4797", "", "2c56cac0-24b7-4552", "", "goodhousekeeping", "4ddbc830-f8c6-4938", "", "35380cbf-159b-4c1f", "", "3", "https://greatist.com/eat/easy-breakfast-ideas-that-require-no-cooking-skills", "3cf6dcc3-2dca-4390", "", "bf09bc69-cf90-4c54", "", "f7f10518-f6a2-40ab", "", "773ad79f-ae38-49d6", "", "c289791c-7f08-4dd6", "", "44b18b34-feac-4e3a", "", "18 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatist", "846721d4-3cf2-428c", "", "20a09b68-f784-477e", "", "43cca39e-0022-4fc0", "", "892f29c6-6401-4700", "", "https://www.google.com/s2/favicons?sz=128&domain=greatist.com", "greatist.com favicon", "1fef1718-b08f-4905", "", "9e4f1485-534c-4283", "", "greatist", "b5b4164a-f4c1-45d4", "", "5a6b1ec7-5ede-4c66", "", "https://www.acouplecooks.com/easy-breakfast-ideas/", "5456479d-7e77-4ec9", "", "039eefbc-512d-4f3b", "", "64bd20ee-4420-43c3", "", "1db606b7-036d-431d", "", "30f04103-6371-48f2", "", "bb8889c9-609c-456b", "", "40 Easy Breakfast Ideas - A Couple Cooks", "32542a4a-51b0-4ad2", "", "af0080d4-ffa5-4cb9", "", "4181bffb-648b-4373", "", "116e6b00-d660-4879", "", "https://www.google.com/s2/favicons?sz=128&domain=acouplecooks.com", "acouplecooks.com favicon", "d454e062-474a-4f3d", "", "208023bb-e533-4054", "", "acouplecooks", "5999ad85-9f25-4c7e", "", "d6d5cffd-7197-40c6", "", "5", "border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "a34ebdd8-4688-48df", "", "flex items-center justify-between border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-background dark:bg-backgroundDark", "9b1f0199-999b-4b05", "", "flex items-center justify-between w-full mb-sm", "4bac0e14-1da6-4aa6", "", "262690b6-c5ce-4cce", "", "color", "super", "space-x-sm flex items-center ", "5d65b1cc-92a6-4e49", "", "super font-sans text-base font-medium text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "3d35c129-9293-4201", "", "align-left", "svg-inline--fa fa-align-left fa-fw ", "41d62912-c7c8-421a", "", "M288 32V96H0V32H288zm0 256v64H0V288H288zM0 160H448v64H0V160zM448 416v64H0V416H448z", "d05a1854-6f39-424d", "", "411509c0-5b02-4dd4", "", "Answer ", "relative default font-sans text-base text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "275d56b2-513c-4c48", "", "break-words min-w-0 [word-break:break-word]", "4dc82e0e-d5bc-43e4", "", "dir", "auto", "be897aa5-2eb0-41e9", "", "prose dark:prose-invert inline leading-normal break-words min-w-0 [word-break:break-word]", "847fd6f1-8a2d-4ddc", "", "60e543e9-3c49-4101", "", "Here are some easy breakfast recipes that require minimal time:", "\n", "OL", "list-decimal list-outside", "6cffd73b-fbf4-4c5c", "", "LI", "ce3b4b85-bbd6-451b", "", "::marker", "1. ", "marker", "7ad79a7b-177b-4822", "", "dbb3c333-767a-46f7", "", "ce45de3f-64f5-458c", "", "STRONG", "88ea41e3-d5f6-4d7f", "", "Sausage & Crescent Roll Casserole", "13158e00-e482-43c7", "", ": This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time", "7ce0a6c8-2d10-4328", "", "whitespace-nowrap", "1e7a1345-d503-47f5", "", "citation ml-xs inline", "ced9b056-943c-4d3c", "", "inline-flex relative -top-[0.3rem] light font-sans text-base text-textOff dark:text-textOffDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "bf41a1fb-86ed-47e7", "", "text-[0.60rem]", "fa1f6f9d-f96d-4162", "", "inline-flex h-[1rem] min-w-[1rem] px-[0.2em] rounded-full items-center justify-center text-center font-semibold md:hover:text-white tabular-nums border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark transition duration-300 bg-offsetPlus dark:bg-offsetPlusDark md:hover:bg-super", "eee8ae26-c754-41d4", "", ".", "a6354d3a-2c6e-4608", "", "649a6079-ca48-4447", "", "453462b2-ec84-4dc6", "", "2. ", "6e26478a-5585-4d10", "", "9c4e5353-1756-4beb", "", "6e483ca8-fa68-4731", "", "f665eb1c-418c-46e2", "", "Overnight Cherry-Almond Oatmeal", "4b6bcea6-2209-4951", "", ": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish", "a552b5c9-7645-4086", "", "c30a812e-5f9c-4d83", "", "04640465-4061-4edd", "", "525fa878-50ba-4dc0", "", "ae12b31b-0aac-4f3b", "", "30565224-05bc-42b7", "", "ad8f9678-da33-45c8", "", "d221c4f9-4cc7-4fd1", "", "2e513126-3ccd-4a93", "", "3. ", "1a3c81fd-edb9-426d", "", "3a901b6b-8823-400f", "", "386a027c-99f9-41b2", "", "d2cc40af-1dd9-46ec", "", "Chorizo Salsa Omelet", "46d5b867-8704-441b", "", ": Jazz up a basic omelet with a few ingredients for a delicious breakfast", "def7faae-818b-4309", "", "55e27820-0e69-4e12", "", "bf05b0f3-e5d1-4187", "", "1ee20641-c2c9-4a45", "", "1659752e-68dc-4a9b", "", "22a3d0a6-f68b-497a", "", "6874c4b8-81b6-4ea1", "", "e7adc3b3-bd07-468c", "", "3043f974-c032-4a0e", "", "4. ", "0c1d4b57-977b-414c", "", "061afb7a-d917-4247", "", "000d8eb3-bc2c-47d1", "", "a31a5b00-3f1d-4906", "", "Berries in Yogurt Cream", "53a26a0f-4ff1-47b3", "", ": Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option", "9386c533-36fe-4083", "", "59ae81a5-9daf-4e61", "", "1b840274-2d28-4b6a", "", "d10e282e-1958-4f96", "", "b25a8e82-12c5-4f9d", "", "bf77f859-60c5-4721", "", "49f4f2e9-a947-4472", "", "b1395bf8-53fc-4191", "", "d70ed951-f6f4-42a2", "", "5. ", "ed567416-dcc9-4440", "", "abea0b53-f851-47e6", "", "87525086-f477-4a32", "", "8a910f2a-bfa0-4494", "", "Breakfast Quesadillas", "834b664a-62ef-4ff3", "", ": These hearty quesadillas are a quick and easy breakfast idea", "700b2beb-a2bd-4ad9", "", "a304557f-a5df-43c4", "", "37f12dad-5d33-4857", "", "26948cba-71e9-44a5", "", "54f58512-1745-416a", "", "69f4b68b-ed9c-4613", "", "5078c7db-8770-480b", "", "0e9a11d5-4f4e-4121", "", "d158cbdd-5cb0-4bdf", "", "6. ", "00b028b3-e5e8-488c", "", "5dd4d2a3-0e81-436c", "", "55d732f3-dfbf-4430", "", "dc8b9dd3-d402-4580", "", "Muffins de lim\u00f3n y almendra con semillas de amapola", "82d88286-a87b-4103", "", ": These bright lemon muffins topped with crunchy almonds are a great way to start the day", "72bc6539-7808-42ea", "", "93a100c8-fb8c-43ca", "", "3d936f1d-a568-42c3", "", "f833002f-f527-4aed", "", "5cd1cec3-63f7-4bb5", "", "71836839-1725-463e", "", "cdaa4027-148b-4143", "", "166c2955-c355-4f69", "", "c0d66170-7079-4f23", "", "7. ", "d588d1fa-099c-4ad1", "", "f4cd1166-1ed7-4f4c", "", "7ea6e7e4-3b61-4e18", "", "225694be-9fb5-4421", "", "Apple cinnamon overnight oats", "8e45cc94-1950-4a9c", "", ": Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples", "e8f6cbd2-1544-4545", "", "f190d90a-a1d5-4cfc", "", "4194bb90-118e-4a5a", "", "2619d1c2-adf6-4682", "", "5cc907b3-5010-4eca", "", "e5a23b4c-50a9-4b65", "", "d0fde8ee-9680-49b4", "", "9db89de0-13f4-4a71", "", "32d1272f-1b84-4172", "", "8. ", "164b39e3-431c-4d48", "", "370de633-6605-43ef", "", "a308bf34-a183-4858", "", "2e73e85b-ea9c-44a7", "", "Greek Yogurt Parfaits", "eb7212c5-24af-4055", "", ": Layer yogurt, berries, and granola for a quick and fancy-looking breakfast", "147b6219-5edd-48bb", "", "116d5fe3-1a03-475a", "", "0cb8fea0-59b9-471d", "", "0c549d5d-7194-4927", "", "c223124f-5e5a-4068", "", "c44ad642-bf7f-4c9d", "", "66d18b6b-66a1-4dbe", "", "6085237d-6eed-43f5", "", "734532c1-0a36-4a49", "", "9. ", "ea1ce600-d536-4bea", "", "64e90a4a-ac01-4595", "", "e95e6237-5174-4bbc", "", "c3e0f0b2-c02f-437d", "", "Diner-style fried eggs", "9b033c7c-beab-40e3", "", ": Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast", "7b69e0ef-cd41-4e44", "", "af274418-9d9a-4391", "", "f135bd82-7322-4bee", "", "4a344f00-0347-467c", "", "ad704739-a984-489c", "", "7572012a-e89a-4b59", "", "43b1a1bf-d0db-47ee", "", "109d1584-50ff-402f", "", "ac64a644-c138-496d", "", "10. ", "c520a713-6201-4a44", "", "b65ceba9-26f7-4f38", "", "932b021b-6a97-422f", "", "6e344c53-ab99-4a3e", "", "Mini frittatas", "c13f4f01-082c-42dc", "", ": These egg muffins are easy to meal prep and can be customized with your favorite ingredients", "0c7f39b2-d7f0-4d06", "", "bf9d23cb-ffe8-42a8", "", "0c5d0d86-9405-414a", "", "4b0a7571-d1a1-4b2f", "", "bd6ae1fd-313a-4fd2", "", "1befafbc-1ff1-44fa", "", "1db25a60-bd78-49e6", "", "849ca63a-ed50-4fb2", "", "5bd00d6e-090c-4d5d", "", "These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.", "columns-2 gap-x-sm mt-md mb-sm animate-in fade-in ease-out duration-500 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "b17cbd73-1346-4cd3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-000 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.favfamilyrecipes.com/wp-content/uploads/2022/10/Breakfast-Ideas-Wide.jpg", "related", "6fc7583c-68c2-4c67", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-100 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://dailyburn.com/life/wp-content/uploads/2017/07/5-Minute-Breakfast-Recipes-Pin-1.jpg", "f432101d-a660-45f3", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-200 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://hips.hearstapps.com/hmg-prod/images/breakfast-tacos-easy-breakfast-ideas-1674576494.jpg", "8fdc3dc8-45f0-406d", "", " rounded-md mb-sm overflow-hidden inline-block shadow-md delay-300 transition-all opacity-100 duration-500 max-h-[90vh] cursor-zoom-in hover:shadow-lg duration-300 ease-in-out", "https://www.acouplecooks.com/wp-content/uploads/2020/09/Veggie-Breakfast-Scramble-008-735x919.jpg", "7e817503-e31f-4e7b", "", "flex flex-row items-center gap-xs mt-sm -ml-sm", "3c14b640-e0f8-4963", "", "text-textOff dark:text-textOffDark md:hover:bg-offsetPlus dark:md:hover:bg-offsetPlusDark md:hover:text-superAlt font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm aspect-square h-8", "9ae2c74a-fc18-4f2c", "", "pointer-events-none absolute z-30 opacity-0 shadow-sm transition-all delay-200 duration-200 group-hover:translate-y-0 group-hover:translate-x-0 group-hover:opacity-100 bottom-[120%] translate-y-1", "15c4ad35-0bcd-4bfb", "", "d7ee96c0-2f68-4184", "", "882c22d3-4f03-4791", "", "41fa1c18-8478-4a25", "", "Not Accurate", "3807a98c-24a1-43f6", "", "flag", "svg-inline--fa fa-flag fa-fw fa-1x ", "01c0b171-fbaf-4980", "", "M64 32V0H0V32 64 368 480v32H64V480 352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4L448 336V16L393.6 43.2c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z", "86b13274-7569-42e5", "", "db8701db-cb0a-4b7d", "", "c1d7c71b-5b4a-4e4b", "", "efeed04c-b44a-4f9e", "", "941d7e81-54a1-4407", "", "30e60d7a-4227-478d", "", "View Sources", "49cbddca-2547-4643", "", "brackets-square", "svg-inline--fa fa-brackets-square fa-fw fa-1x ", "4b5e87b0-8909-48cb", "", "M416 32h32V64 448v32H416 320 288V416h32 64V96H320 288V32h32 96zM32 32h96 32V96H128 64V416h64 32v64H128 32 0V448 64 32H32z", "73801223-e18f-4f55", "", "5328c8f5-6e7b-4b37", "", "beb1a249-f195-4780", "", "f30c8632-223c-41cd", "", "00b40a5c-8b55-4306", "", "45f0477f-5948-4d8d", "", "Copy To Clipboard", "046815fd-49a0-4d80", "", "clipboard", "svg-inline--fa fa-clipboard fa-fw fa-1x ", "f06c22ed-34ee-4145", "", "M192 0c-41.8 0-77.4 26.7-90.5 64H0V512H384V64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272h16v32H272 112 96V192h16z", "e4926902-8bcb-4dd1", "", "a673b0ab-e6ce-48e4", "", "cd842394-6c4e-49dd", "", "4d452c03-7a5e-4211", "", "c354d42e-d167-4fee", "", "c70406f2-450e-44fb", "", "Edit Query", "a0e3384d-1b8c-43e4", "", "pen-to-square", "svg-inline--fa fa-pen-to-square fa-fw fa-1x ", "8fc5d79e-e0d0-44e9", "", "M144 272L128 384l112-16L436.7 171.3l-96-96L144 272zM512 96L416 0 363.3 52.7l96 96L512 96zM32 64H0V96 480v32H32 416h32V480 320 288H384v32V448H64V128H192h32V64H192 32z", "5eb5a9bc-d3f4-442a", "", "07755d30-62e1-4a1f", "", "mt-lg border-t pt-lg animate-in fade-in ease-out duration-1000 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "2fde4da4-7019-4462", "", "baf2fc3a-86fe-4e58", "", "b4fa73e8-609f-4065", "", "6caeefc2-256e-4a09", "", "a9db8675-be7c-4f80", "", "cb809cd9-bc38-468d", "", "fc27ada2-34ee-4a20", "", "d85608f9-95c5-485a", "", "layer-plus", "svg-inline--fa fa-layer-plus fa-fw ", "87e308e6-ec34-4902", "", "M488 24V0H440V24 56H408 384v48h24 32v32 24h48V136 104h32 24V56H520 488V24zM0 256L288 384 576 256 288 128 0 256zM288 419L104.6 337.5 0 384 288 512 576 384 471.4 337.5 288 419z", "61c34ddc-5e6d-4ab1", "", "1f10bcb4-130f-4dc1", "", "Related", "divide-y border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "08f0f54c-0bdd-493d", "", "py-sm cursor-pointer group flex items-center justify-between", "fe52bdec-20a5-44cb", "", "md:group-hover:text-super transition-all duration-300 default font-sans text-base font-medium text-textMain dark:text-textMainDark selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "f027ca85-503b-4dbe", "", "breakfast recipes that can be made ahead of time", "flex-none transition-all duration-300 ml-sm super font-sans text-base text-super selection:bg-super selection:text-white dark:selection:bg-opacity-50 selection:bg-opacity-70", "79b3a7fc-87d2-4198", "", "svg-inline--fa fa-plus ", "96bc970a-dd6b-4d62", "", "M256 80V48H192V80 224H48 16v64H48 192V432v32h64V432 288H400h32V224H400 256V80z", "1654b322-db7b-44cf", "", "ac672e91-840a-4334", "", "74a5fea7-e5d3-499c", "", "healthy breakfast options that require minimal prep time", "38811f1e-9b89-4d47", "", "9e58f75e-70ee-4580", "", "c2a9e5bc-f5cd-4f60", "", "55cd0fa6-d442-4e10", "", "a1719217-08f2-499c", "", "breakfast recipes that can be made with pantry staples", "5c2c270e-cc8d-4a8e", "", "6c903f01-123e-4f2a", "", "61944903-e5a4-43f3", "", "ppl-message-scroll-target", "60b5aa70-ec46-4056", "", "z-10 border-t md:border-none md:bottom-lg py-sm left-0 right-0 fixed md:left-sideBarWidth justify-center px-sm md:p-0 animate-in slide-in-from-bottom-4 duration-300 ease-out bottom-[64px] md:bottom-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "4d74a06b-e71a-4fb4", "", "max-w-screen-md md:px-lg mx-auto border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "e371ba15-31ee-4d95", "", "rounded-full flex items-center gap-x-xs transition-all duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "d5e67e5a-7c1f-44aa", "", "grow transition-all duration-300", "c6fce410-0af7-455f", "", "245985ad-1b58-4758", "", "grow", "8e126868-5968-4212", "", "3800cab4-6404-4885", "", "rounded-full md:p-sm bg-offset dark:bg-offsetDark", "73a881eb-242e-4ba9", "", "relative flex items-center", "3ee2c1ad-db74-4aad", "", "TEXTAREA", "placeholder", "Ask follow-up...", "outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-[32px] rounded-b-[32px] py-md px-lg pr-[128px] md:pr-[138px]", "autocomplete", "off", "spellcheck", "data-ms-editor", "autofocus", "height: 57.3333px !important;", "b487f7c7-5a80-4400", "", "3196376b-2c1a-4dc4", "", "bg-green absolute right-sm flex items-center gap-sm bg-background dark:bg-offsetDark rounded-full px-sm", "bdc5fb0d-eb1f-4496", "", " text-textOff md:hover:text-textMain dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-sm px-sm font-medium h-8", "f6de9c49-6082-4769", "", "f59e4dfc-5b11-4e79", "", "13f195e4-3b1a-4e39", "", "ec05d9bc-cfba-497f", "", "0669e2bd-e30d-461f", "", "5 left. Reloads every 4 hours.", "fa488be5-8f46-475c", "", "b31b1f81-4012-497f", "", "rounded-full p-three border transition duration-300 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "63a75b8d-57dc-4086", "", "relative w-8 transition duration-200 ease-in-out", "ddf67cb9-e0f7-4966", "", "rounded-full h-4 w-4 transition-all duration-300 ease-in-out shadow-sm md:group-hover:scale-90 ml-0 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offsetPlus dark:bg-offsetPlusDark", "3a40e1fd-2b4a-4f63", "", "c2907036-f298-445f", "", "Copilot", "fa5817d7-bb0c-4832", "", " \u00b7 5", "bg-super text-white hover:opacity-80 font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-center rounded-full cursor-point active:scale-95 origin-center whitespace-nowrap inline-flex text-base aspect-square h-10", "771ccc57-eaf1-4333", "", "912c7141-3166-4ce3", "", "arrow-up", "svg-inline--fa fa-arrow-up fa-fw fa-lg ", "a75b1676-c8ed-450f", "", "M214.6 57.4L192 34.7 169.4 57.4l-144 144L2.7 224 48 269.2l22.6-22.6L160 157.2V448v32h64V448 157.2l89.4 89.4L336 269.2 381.3 224l-22.6-22.6-144-144z", "a48b63ea-377a-410d", "", "md:hidden", "d8d56ac9-756f-4ca4", "", "md:hidden bottom-0 fixed left-0 right-0 z-20 border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-offset dark:bg-offsetDark", "b2f3197f-6203-4124", "", "px-sm h-[64px] relative shadow-md border-t border-borderMain/60 dark:border-borderMainDark/60 divide-borderMain dark:divide-borderMainDark ring-borderMain dark:ring-borderMainDark bg-transparent", "c9f80d24-bbcf-4278", "", "items-center relative gap-x-xs flex h-full w-fit", "01f4d9a2-9891-4b00", "", "relative items-center gap-x-sm h-full ", "c293cbca-26f4-4934", "", "5626b5a7-7942-4d89", "", "md:hover:bg-offsetPlus text-textOff md:hover:text-textMain dark:md:hover:bg-offsetPlusDark dark:md:hover:text-textMainDark font-sans focus:outline-none outline-none outline-transparent transition duration-300 ease-in-out font-sans select-none items-center relative group justify-start rounded-md cursor-point active:scale-95 origin-center whitespace-nowrap flex w-full text-sm px-sm font-medium h-8", "c29cb7e2-9119-47dd", "", "754773a2-b100-4c4e", "", "cf29f992-4a4c-4286", "", "d8550be2-cf6b-4cdb", "", "48dd9c76-5ecd-4e54", "", "277354ee-ef61-4823", "", "a14a6eb0-8213-4994", "", "23dc3d59-bd52-4cc1", "", "e8cb4547-9b65-47c7", "", "0632f4ac-2c29-4c60", "", "40cf8510-f67b-47eb", "", "5705071a-997b-417d", "", "fed65204-c3b2-46f6", "", "d57ffa09-b0e0-47fb", "", "62c708cd-32bc-428a", "", "03e78672-f8b7-459b", "", "94ef85f9-ace2-40ac", "", "5884723d-7f3a-4da4", "", "ed9a09b8-d0b3-44c0", "", "b0163080-c15b-421d", "", "7800c583-f88f-41a5", "", "804a7704-8fed-4cf3", "", "725d1576-a722-46f6", "", "1a63b844-5f65-4f6b", "", "5d87abde-76fc-47ac", "", "06d1a10e-85e7-402c", "", "3d56b7b3-4f36-4b31", "", "__NEXT_DATA__", "application/json", "add91db0-a901-4abd", "", "{\"props\":{\"pageProps\":{\"session\":{\"user\":{\"name\":\"Webtasks Navigator\",\"email\":\"webtasks.navigator@gmail.com\",\"image\":\"https://imagedelivery.net/MPdwyYSWT8IY7lxgN3x3Uw/717350f1-04a2-421b-5655-b0c8cde55000/thumbnail\",\"id\":\"c650d2bd-43bb-4fa2-9e63-7c7ae5a764b5\",\"username\":\"webtasksnavigator8343\",\"subscription_status\":null},\"expires\":\"2023-08-19T12:28:25.278Z\",\"preventUsernameRedirect\":false},\"settings\":{\"settingsLoaded\":true,\"defaultModel\":\"turbo\",\"queryCount\":22,\"queryCountCopilot\":null,\"hasAiProfile\":false,\"referralCode\":\"J845XK8G\",\"referralNumSuccess\":0,\"disableTraining\":false,\"defaultCopilot\":false},\"_sentryTraceData\":\"4ac1919bfdae4f539ce584ba30d00998-816690fd41d7c68e-0\",\"_sentryBaggage\":\"sentry-environment=production,sentry-release=ILYVtAPk5JEzit9SpB2YZ,sentry-transaction=%2F,sentry-public_key=bb45aa7ca2dc43b6a7b6518e7c91e13d,sentry-trace_id=4ac1919bfdae4f539ce584ba30d00998,sentry-sample_rate=0.00002\",\"gpt4Limit\":5},\"__N_SSP\":true},\"page\":\"/\",\"query\":{},\"buildId\":\"ILYVtAPk5JEzit9SpB2YZ\",\"isFallback\":false,\"gssp\":true,\"appGip\":true,\"scriptLoader\":[]}", "https://static.cloudflareinsights.com/beacon.min.js/v2cb3a2ab87c5498db5ce7e6608cf55231689030342039", "integrity", "sha512-DI3rPuZDcpH/mSGyN22erN5QFnhl760f50/te7FTIYxodEF8jJnSFnfnmG/c+osmIQemvUrnBtxnMpNdzvx1/g==", "data-cf-beacon", "{\"rayId\":\"7e9b342cf93ea765\",\"token\":\"92730c73a9e747fbb6a25e1d6657122d\",\"version\":\"2023.4.0\",\"si\":100}", "ea192cff-cc91-489b", "", "tabindex", "-1", "min-height: 0px !important; max-height: none !important; height: 0px !important; visibility: hidden !important; overflow: hidden !important; position: absolute !important; z-index: -1000 !important; top: 0px !important; right: 0px !important; border-width: 0.666667px; box-sizing: border-box; font-family: __Poppins_3bfef9, __Poppins_Fallback_3bfef9, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; font-size: 16px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; padding: 16px 138px 16px 24px; tab-size: 4; text-indent: 0px; text-rendering: auto; text-transform: none; width: 704px; word-break: normal;", "7398e464-c00c-4104", "", "https://342251b-beta.perplexity.ai/342251b.js", "data-website-id", "39c5923d-8ff2-48ed-97b7-603cc0ef89c9", "afterInteractive", "d7fb0808-a327-47f0", "", "NEXT-ROUTE-ANNOUNCER", "ef182e6f-bc76-4e95", "", "aria-live", "assertive", "__next-route-announcer__", "alert", "border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; white-space: nowrap; overflow-wrap: normal;", "3d2da39e-6f93-46c2", "", "https://www.googletagmanager.com/gtag/js?id=G-SH9PRBQG23", "6cd29c03-8880-4c83", "", "nextjs-google-analytics", "f503ed55-fdfc-4865", "", "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-SH9PRBQG23', {\n page_path: window.location.pathname,\n });\n ", "5d22fdc0-1891-46df", "", "b6a0aea8-e664-4585", "", "e634cc68-5524-473c", "", "bb15a53b-92e7-4db4", "", "58c2bff9-27a9-4ba3", "", "3b977f20-153f-481f", "", "42766662-4510-4a90", "", "9e9603c1-db78-4701", "", "91de60b4-e065-49be", "", "ec362cfb-9ad4-4aa7", "", "7fdc84d2-ae73-444c", "", "6bfe2c82-51d9-4e9e", "", "/_next/static/chunks/4101-5924c75375ec9e18.js", "bf6bc7d8-db61-40e3", "", "/_next/static/chunks/pages/search-5134f530518f61a5.js", "28c2dd7f-dd64-4908", "", "EDITOR-CARD", "position:absolute;top:0px;left:0px;z-index:auto;display: block !important", "98a1fb43-b26a-473d", "", "ltr", "all: initial;", "97ea925f-3079-4d47", "", "color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;", "6e93f876-ce11-4c7d", "", "chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css", "b77a2b32-0234-4abf", "", "da353bc4-69f8-47aa", "", "30ef8b38-b43e-43dd", "", "bfaede00-e84f-44ba", ""]} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-0-0.json b/demonstrations/ieckqwf/extra_element_properties/page-0-0.json new file mode 100644 index 0000000000000000000000000000000000000000..fff8f62850e958ca6d0bb46b03c3ac78ae4f2fe4 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-0-0.json @@ -0,0 +1 @@ +{"75f84d07-4b91-422b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e3905ced-5a58-45d4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bc81822f-7b3d-4545": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d5b388b6-6e92-467c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4c870135-e649-4f8b": {"visibility": 0, "bbox": [0, 64, 1280, 592], "clickable": false, "set_of_marks": false}, "c4b4b212-461c-4efb": {"visibility": 0, "bbox": [0, 64, 1280, 166.1875], "clickable": false, "set_of_marks": false}, "5155036d-131b-4ae5": {"visibility": 0, "bbox": [0, 64, 1280, 55], "clickable": false, "set_of_marks": false}, "a3155ba6-af3f-497a": {"visibility": 0, "bbox": [0, 167, 1280, 22], "clickable": false, "set_of_marks": false}, "4ff17368-0a21-4458": {"visibility": 0, "bbox": [0, 208.1875, 1280, 22], "clickable": false, "set_of_marks": false}, "19947502-312a-412f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-12-0.json b/demonstrations/ieckqwf/extra_element_properties/page-12-0.json new file mode 100644 index 0000000000000000000000000000000000000000..504fde8c78ed6a155a403367c9fe6d4ec2ea369d --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-12-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -4111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -2703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -120.66667175292969, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -2333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -2052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -1069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -1067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -1069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -59.66666793823242, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -35.66666793823242, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -35.66666793823242, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": true}, "323c736f-d631-435a": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": 0}, "03ad161a-44a1-4905": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": 0}, "9c7be7cc-0dd0-4522": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 768, 152], "clickable": false, "set_of_marks": true}, "ac182ce0-1577-439c": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 768, 24], "clickable": false, "set_of_marks": true}, "8558afe9-c0d2-411e": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 128.34375, 24], "clickable": false, "set_of_marks": 0}, "06f9f96c-ff49-420a": {"visibility": 1, "bbox": [349.66668701171875, 48.333335876464844, 14, 16], "clickable": false, "set_of_marks": 0}, "d8b27842-14d9-45a7": {"visibility": 1, "bbox": [350.16668701171875, 48.333335876464844, 13, 16], "clickable": false, "set_of_marks": true}, "bcf43bb7-33c1-4fc1": {"visibility": 1, "bbox": [371.66668701171875, 44.333335876464844, 106.34375, 24], "clickable": false, "set_of_marks": true}, "fe7b0910-2cc5-4f44": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": true}, "370e6816-b4f3-441e": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "a73f94e4-2be1-468e": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "a296e17a-3fbf-4fbe": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "40223ff2-ec67-44bb": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "45a2b5e0-6e0f-4609": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "ec685cad-2276-4dfe": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "b46f8877-710e-4581": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "c3a6512d-dbb1-404e": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "56bb96c0-9d6f-439e": {"visibility": 1, "bbox": [357.66668701171875, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "caac51c4-cf29-4be9": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 97.83333587646484, 16], "clickable": false, "set_of_marks": 0}, "ed315a3b-3fbb-4535": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "12a3f3bd-35fd-48e4": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "ef7e2444-275e-41cb": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "1a80d0e3-e2e4-4443": {"visibility": 1, "bbox": [377.66668701171875, 112.33333587646484, 77.83333587646484, 16], "clickable": false, "set_of_marks": true}, "a48a9f2d-2e92-431a": {"visibility": 1, "bbox": [459.5, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "127e909d-96b9-4103": {"visibility": 1, "bbox": [467.40625, 112.33333587646484, 4.208333492279053, 16], "clickable": false, "set_of_marks": true}, "fec27fa8-aef4-42a9": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "a917b887-1bea-4203": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "d62b89c4-22f1-4177": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "9fdafbad-19d2-4ad2": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "676aea97-b445-4e7e": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "afb00160-bf5d-4cee": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "0bda2a5c-95d2-426f": {"visibility": 1, "bbox": [551.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "fefe87b1-9278-4e85": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 121.27083587646484, 16], "clickable": false, "set_of_marks": 0}, "2bca0f26-f911-4e14": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "62996fea-cc04-4c37": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "d0f59419-2518-4654": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "5e70e550-40d9-4557": {"visibility": 1, "bbox": [571.6666870117188, 112.33333587646484, 101.27083587646484, 16], "clickable": false, "set_of_marks": true}, "c6588d87-4279-4789": {"visibility": 1, "bbox": [676.9375, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "08f2aedb-ea0b-42ce": {"visibility": 1, "bbox": [684.84375, 112.33333587646484, 6.927083492279053, 16], "clickable": false, "set_of_marks": true}, "781a4dea-b71f-4339": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "9ab0924f-002a-4131": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "41332a3e-8183-42b7": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "fb5bd943-9d4b-498b": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "91c48008-66f6-4822": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "7fc3a830-7aea-4b6b": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "c69d470c-b20e-43c0": {"visibility": 1, "bbox": [745.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "89a25add-4f94-4257": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 137.3125, 16], "clickable": false, "set_of_marks": 0}, "95219df4-5558-4819": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "5683a5bd-85e2-4b20": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "4b8a4caa-fa92-4797": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "2c56cac0-24b7-4552": {"visibility": 1, "bbox": [765.6666870117188, 112.33333587646484, 117.3125, 16], "clickable": false, "set_of_marks": true}, "4ddbc830-f8c6-4938": {"visibility": 1, "bbox": [886.9791870117188, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "35380cbf-159b-4c1f": {"visibility": 1, "bbox": [894.8854370117188, 112.33333587646484, 7.1354169845581055, 16], "clickable": false, "set_of_marks": true}, "3cf6dcc3-2dca-4390": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "bf09bc69-cf90-4c54": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "f7f10518-f6a2-40ab": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "773ad79f-ae38-49d6": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "c289791c-7f08-4dd6": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "44b18b34-feac-4e3a": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "846721d4-3cf2-428c": {"visibility": 1, "bbox": [939.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "20a09b68-f784-477e": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 66.79167175292969, 16], "clickable": false, "set_of_marks": true}, "43cca39e-0022-4fc0": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "892f29c6-6401-4700": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "1fef1718-b08f-4905": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "9e4f1485-534c-4283": {"visibility": 1, "bbox": [959.6666870117188, 112.33333587646484, 46.79166793823242, 16], "clickable": false, "set_of_marks": true}, "b5b4164a-f4c1-45d4": {"visibility": 1, "bbox": [1010.4583740234375, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "5a6b1ec7-5ede-4c66": {"visibility": 1, "bbox": [1018.3646240234375, 112.33333587646484, 7.770833492279053, 16], "clickable": false, "set_of_marks": true}, "5456479d-7e77-4ec9": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": true, "set_of_marks": true}, "039eefbc-512d-4f3b": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": false, "set_of_marks": 0}, "64bd20ee-4420-43c3": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": false, "set_of_marks": 0}, "1db606b7-036d-431d": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 40], "clickable": false, "set_of_marks": true}, "30f04103-6371-48f2": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 16], "clickable": false, "set_of_marks": true}, "bb8889c9-609c-456b": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 16], "clickable": false, "set_of_marks": 0}, "32542a4a-51b0-4ad2": {"visibility": 1, "bbox": [357.66668701171875, 168.33334350585938, 170, 24], "clickable": false, "set_of_marks": true}, "af0080d4-ffa5-4cb9": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 105.0625, 16], "clickable": false, "set_of_marks": 0}, "4181bffb-648b-4373": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "116e6b00-d660-4879": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": 0}, "d454e062-474a-4f3d": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": 0}, "208023bb-e533-4054": {"visibility": 1, "bbox": [377.66668701171875, 172.33334350585938, 85.0625, 16], "clickable": false, "set_of_marks": true}, "5999ad85-9f25-4c7e": {"visibility": 1, "bbox": [466.72918701171875, 168.33334350585938, 3.90625, 24], "clickable": false, "set_of_marks": true}, "d6d5cffd-7197-40c6": {"visibility": 1, "bbox": [474.63543701171875, 172.33334350585938, 7.677083492279053, 16], "clickable": false, "set_of_marks": true}, "a34ebdd8-4688-48df": {"visibility": 0.4273437232155102, "bbox": [349.66668701171875, 220.33334350585938, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 768, 32], "clickable": false, "set_of_marks": true}, "4bac0e14-1da6-4aa6": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 768, 24], "clickable": false, "set_of_marks": true}, "262690b6-c5ce-4cce": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 87.30208587646484, 24], "clickable": false, "set_of_marks": true}, "5d65b1cc-92a6-4e49": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 87.30208587646484, 24], "clickable": false, "set_of_marks": 0}, "3d35c129-9293-4201": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 20, 24], "clickable": false, "set_of_marks": true}, "41d62912-c7c8-421a": {"visibility": 1, "bbox": [349.66668701171875, 223.6666717529297, 20, 16], "clickable": false, "set_of_marks": true}, "d05a1854-6f39-424d": {"visibility": 1, "bbox": [352.66668701171875, 224.6666717529297, 14, 14], "clickable": false, "set_of_marks": true}, "411509c0-5b02-4dd4": {"visibility": 1, "bbox": [377.66668701171875, 220.33334350585938, 59.302085876464844, 24], "clickable": false, "set_of_marks": true}, "275d56b2-513c-4c48": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 1, "bbox": [349.66668701171875, 253, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 1, "bbox": [349.66668701171875, 253, 514.625, 22], "clickable": false, "set_of_marks": true}, "6cffd73b-fbf4-4c5c": {"visibility": 1, "bbox": [349.66668701171875, 284.3333435058594, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 1, "bbox": [375.66668701171875, 284.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 1, "bbox": [381.66668701171875, 285, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 1, "bbox": [381.66668701171875, 285, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 1, "bbox": [381.66668701171875, 285, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 1, "bbox": [381.66668701171875, 285, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 309, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 309, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 309, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 305.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 305.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 309.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 342.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 343, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 343, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 343, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 343, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 367, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 367, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 367, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 363.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 363.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 367.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 400.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -91.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 401, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 401, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 401, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 401, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 425, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 425, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 425, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 421.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 421.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 425.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 458.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -37.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 459, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 459, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 459, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 459, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 483, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 483, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 483, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 479.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 479.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 483.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 516.3333740234375, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, 16.65625, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 517, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 517, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 517, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 517, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 517, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 517, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 517, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 513.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 513.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 517.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 550.3333740234375, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, 70.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 551, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 551, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 551, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 551, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 575, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 575, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 575, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 571.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 571.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 575.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 0, "bbox": [48, 124.65625, 1224, 54], "clickable": false, "set_of_marks": false}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, 124.65625, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 0, "bbox": [48, 124.65625, 1224, 53], "clickable": false, "set_of_marks": false}, "7ea6e7e4-3b61-4e18": {"visibility": 0, "bbox": [48, 124.65625, 213.796875, 17], "clickable": false, "set_of_marks": false}, "225694be-9fb5-4421": {"visibility": 0, "bbox": [48, 124.65625, 213.796875, 17], "clickable": false, "set_of_marks": false}, "8e45cc94-1950-4a9c": {"visibility": 0, "bbox": [261.796875, 124.65625, 968.625, 17], "clickable": false, "set_of_marks": false}, "e8f6cbd2-1544-4545": {"visibility": 0, "bbox": [48, 142.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "f190d90a-a1d5-4cfc": {"visibility": 0, "bbox": [48, 142.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "4194bb90-118e-4a5a": {"visibility": 0, "bbox": [48, 142.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "2619d1c2-adf6-4682": {"visibility": 0, "bbox": [48, 142.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "5cc907b3-5010-4eca": {"visibility": 0, "bbox": [48, 142.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "e5a23b4c-50a9-4b65": {"visibility": 0, "bbox": [48, 142.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 0, "bbox": [48, 178.65625, 1224, 54], "clickable": false, "set_of_marks": false}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, 178.65625, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 0, "bbox": [48, 178.65625, 1224, 53], "clickable": false, "set_of_marks": false}, "a308bf34-a183-4858": {"visibility": 0, "bbox": [48, 178.65625, 151.078125, 17], "clickable": false, "set_of_marks": false}, "2e73e85b-ea9c-44a7": {"visibility": 0, "bbox": [48, 178.65625, 151.078125, 17], "clickable": false, "set_of_marks": false}, "eb7212c5-24af-4055": {"visibility": 0, "bbox": [199.078125, 178.65625, 482.921875, 17], "clickable": false, "set_of_marks": false}, "147b6219-5edd-48bb": {"visibility": 0, "bbox": [48, 196.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "116d5fe3-1a03-475a": {"visibility": 0, "bbox": [48, 196.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "0cb8fea0-59b9-471d": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "0c549d5d-7194-4927": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "c223124f-5e5a-4068": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "c44ad642-bf7f-4c9d": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 0, "bbox": [48, 232.65625, 1224, 54], "clickable": false, "set_of_marks": false}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, 232.65625, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 0, "bbox": [48, 232.65625, 1224, 53], "clickable": false, "set_of_marks": false}, "e95e6237-5174-4bbc": {"visibility": 0, "bbox": [48, 232.65625, 145.140625, 17], "clickable": false, "set_of_marks": false}, "c3e0f0b2-c02f-437d": {"visibility": 0, "bbox": [48, 232.65625, 145.140625, 17], "clickable": false, "set_of_marks": false}, "9b033c7c-beab-40e3": {"visibility": 0, "bbox": [193.140625, 232.65625, 730.734375, 17], "clickable": false, "set_of_marks": false}, "7b69e0ef-cd41-4e44": {"visibility": 0, "bbox": [48, 250.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "af274418-9d9a-4391": {"visibility": 0, "bbox": [48, 250.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "f135bd82-7322-4bee": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "4a344f00-0347-467c": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "ad704739-a984-489c": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "7572012a-e89a-4b59": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 0, "bbox": [48, 286.65625, 1224, 54], "clickable": false, "set_of_marks": false}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, 286.65625, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 0, "bbox": [48, 286.65625, 1224, 53], "clickable": false, "set_of_marks": false}, "932b021b-6a97-422f": {"visibility": 0, "bbox": [48, 286.65625, 91.984375, 17], "clickable": false, "set_of_marks": false}, "6e344c53-ab99-4a3e": {"visibility": 0, "bbox": [48, 286.65625, 91.984375, 17], "clickable": false, "set_of_marks": false}, "c13f4f01-082c-42dc": {"visibility": 0, "bbox": [139.984375, 286.65625, 610.765625, 17], "clickable": false, "set_of_marks": false}, "0c7f39b2-d7f0-4d06": {"visibility": 0, "bbox": [48, 304.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "bf9d23cb-ffe8-42a8": {"visibility": 0, "bbox": [48, 304.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "0c5d0d86-9405-414a": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "4b0a7571-d1a1-4b2f": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "bd6ae1fd-313a-4fd2": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "1befafbc-1ff1-44fa": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 0, "bbox": [8, 356.65625, 582.4375, 17], "clickable": false, "set_of_marks": false}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, 374.65625, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, 374.65625, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 2560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 1374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 2578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 3497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 3497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 3515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 3515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 3497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 3515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 3516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 3497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 3515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 3515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 3497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 3515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 3515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 3531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 3531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 3547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 3583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 3583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 3585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 3617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 3617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 3619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 3651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 3651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 3653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 3667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 3725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 3762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 3762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 3762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 3780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 3780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 3780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 3798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 3798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 3798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 3816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 3816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 3816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 3834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -4119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 3834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 3833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-17-0.json b/demonstrations/ieckqwf/extra_element_properties/page-17-0.json new file mode 100644 index 0000000000000000000000000000000000000000..9a94845f4e6fcaa9d3f8408473ff02c4f200401c --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-17-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -220.6666717529297, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -212.6666717529297, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -212.6666717529297, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -212.6666717529297, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -159.6666717529297, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -135.6666717529297, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -135.6666717529297, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -135.6666717529297, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -135.6666717529297, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -135.6666717529297, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0.6337719214589972, "bbox": [349.66668701171875, -55.66666793823242, 768, 152], "clickable": false, "set_of_marks": true}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": true}, "370e6816-b4f3-441e": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": 0}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": 0}, "a73f94e4-2be1-468e": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": 0}, "a296e17a-3fbf-4fbe": {"visibility": 0.6987179426046518, "bbox": [349.66668701171875, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "40223ff2-ec67-44bb": {"visibility": 0.6987179426046518, "bbox": [349.66668701171875, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "45a2b5e0-6e0f-4609": {"visibility": 0.6987179426046518, "bbox": [349.66668701171875, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "ec685cad-2276-4dfe": {"visibility": 0.8083333253860474, "bbox": [357.66668701171875, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "b46f8877-710e-4581": {"visibility": 0.5208333134651184, "bbox": [357.66668701171875, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "c3a6512d-dbb1-404e": {"visibility": 0.5208333134651184, "bbox": [357.66668701171875, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "56bb96c0-9d6f-439e": {"visibility": 1, "bbox": [357.66668701171875, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "caac51c4-cf29-4be9": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 97.83333587646484, 16], "clickable": false, "set_of_marks": 0}, "ed315a3b-3fbb-4535": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "12a3f3bd-35fd-48e4": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "ef7e2444-275e-41cb": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "1a80d0e3-e2e4-4443": {"visibility": 1, "bbox": [377.66668701171875, 12.333333969116211, 77.83333587646484, 16], "clickable": false, "set_of_marks": true}, "a48a9f2d-2e92-431a": {"visibility": 1, "bbox": [459.5, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "127e909d-96b9-4103": {"visibility": 1, "bbox": [467.40625, 12.333333969116211, 4.208333492279053, 16], "clickable": false, "set_of_marks": true}, "fec27fa8-aef4-42a9": {"visibility": 0.6987179426046518, "bbox": [543.6666870117188, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "a917b887-1bea-4203": {"visibility": 0.6987179426046518, "bbox": [543.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "d62b89c4-22f1-4177": {"visibility": 0.6987179426046518, "bbox": [543.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "9fdafbad-19d2-4ad2": {"visibility": 0.8083333253860474, "bbox": [551.6666870117188, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "676aea97-b445-4e7e": {"visibility": 0.5208333134651184, "bbox": [551.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "afb00160-bf5d-4cee": {"visibility": 0.5208333134651184, "bbox": [551.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "0bda2a5c-95d2-426f": {"visibility": 1, "bbox": [551.6666870117188, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "fefe87b1-9278-4e85": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 121.27083587646484, 16], "clickable": false, "set_of_marks": 0}, "2bca0f26-f911-4e14": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "62996fea-cc04-4c37": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "d0f59419-2518-4654": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "5e70e550-40d9-4557": {"visibility": 1, "bbox": [571.6666870117188, 12.333333969116211, 101.27083587646484, 16], "clickable": false, "set_of_marks": true}, "c6588d87-4279-4789": {"visibility": 1, "bbox": [676.9375, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "08f2aedb-ea0b-42ce": {"visibility": 1, "bbox": [684.84375, 12.333333969116211, 6.927083492279053, 16], "clickable": false, "set_of_marks": true}, "781a4dea-b71f-4339": {"visibility": 0.6987179426046518, "bbox": [737.6666870117188, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "9ab0924f-002a-4131": {"visibility": 0.6987179426046518, "bbox": [737.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "41332a3e-8183-42b7": {"visibility": 0.6987179426046518, "bbox": [737.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "fb5bd943-9d4b-498b": {"visibility": 0.8083333253860474, "bbox": [745.6666870117188, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "91c48008-66f6-4822": {"visibility": 0.5208333134651184, "bbox": [745.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "7fc3a830-7aea-4b6b": {"visibility": 0.5208333134651184, "bbox": [745.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "c69d470c-b20e-43c0": {"visibility": 1, "bbox": [745.6666870117188, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "89a25add-4f94-4257": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 137.3125, 16], "clickable": false, "set_of_marks": 0}, "95219df4-5558-4819": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "5683a5bd-85e2-4b20": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "4b8a4caa-fa92-4797": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "2c56cac0-24b7-4552": {"visibility": 1, "bbox": [765.6666870117188, 12.333333969116211, 117.3125, 16], "clickable": false, "set_of_marks": true}, "4ddbc830-f8c6-4938": {"visibility": 1, "bbox": [886.9791870117188, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "35380cbf-159b-4c1f": {"visibility": 1, "bbox": [894.8854370117188, 12.333333969116211, 7.1354169845581055, 16], "clickable": false, "set_of_marks": true}, "3cf6dcc3-2dca-4390": {"visibility": 0.6987179426046518, "bbox": [931.6666870117188, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "bf09bc69-cf90-4c54": {"visibility": 0.6987179426046518, "bbox": [931.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "f7f10518-f6a2-40ab": {"visibility": 0.6987179426046518, "bbox": [931.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "773ad79f-ae38-49d6": {"visibility": 0.8083333253860474, "bbox": [939.6666870117188, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "c289791c-7f08-4dd6": {"visibility": 0.5208333134651184, "bbox": [939.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "44b18b34-feac-4e3a": {"visibility": 0.5208333134651184, "bbox": [939.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "846721d4-3cf2-428c": {"visibility": 1, "bbox": [939.6666870117188, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "20a09b68-f784-477e": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 66.79167175292969, 16], "clickable": false, "set_of_marks": true}, "43cca39e-0022-4fc0": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "892f29c6-6401-4700": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "1fef1718-b08f-4905": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "9e4f1485-534c-4283": {"visibility": 1, "bbox": [959.6666870117188, 12.333333969116211, 46.79166793823242, 16], "clickable": false, "set_of_marks": true}, "b5b4164a-f4c1-45d4": {"visibility": 1, "bbox": [1010.4583740234375, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "5a6b1ec7-5ede-4c66": {"visibility": 1, "bbox": [1018.3646240234375, 12.333333969116211, 7.770833492279053, 16], "clickable": false, "set_of_marks": true}, "5456479d-7e77-4ec9": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 186, 52], "clickable": true, "set_of_marks": true}, "039eefbc-512d-4f3b": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 186, 52], "clickable": false, "set_of_marks": 0}, "64bd20ee-4420-43c3": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 186, 52], "clickable": false, "set_of_marks": 0}, "1db606b7-036d-431d": {"visibility": 1, "bbox": [357.66668701171875, 52.333335876464844, 170, 40], "clickable": false, "set_of_marks": true}, "30f04103-6371-48f2": {"visibility": 1, "bbox": [357.66668701171875, 52.333335876464844, 170, 16], "clickable": false, "set_of_marks": true}, "bb8889c9-609c-456b": {"visibility": 1, "bbox": [357.66668701171875, 52.333335876464844, 170, 16], "clickable": false, "set_of_marks": 0}, "32542a4a-51b0-4ad2": {"visibility": 1, "bbox": [357.66668701171875, 68.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "af0080d4-ffa5-4cb9": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 105.0625, 16], "clickable": false, "set_of_marks": 0}, "4181bffb-648b-4373": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "116e6b00-d660-4879": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "d454e062-474a-4f3d": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "208023bb-e533-4054": {"visibility": 1, "bbox": [377.66668701171875, 72.33333587646484, 85.0625, 16], "clickable": false, "set_of_marks": true}, "5999ad85-9f25-4c7e": {"visibility": 1, "bbox": [466.72918701171875, 68.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "d6d5cffd-7197-40c6": {"visibility": 1, "bbox": [474.63543701171875, 72.33333587646484, 7.677083492279053, 16], "clickable": false, "set_of_marks": true}, "a34ebdd8-4688-48df": {"visibility": 0.49003473967465566, "bbox": [349.66668701171875, 120.33333587646484, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 768, 32], "clickable": false, "set_of_marks": true}, "4bac0e14-1da6-4aa6": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 768, 24], "clickable": false, "set_of_marks": true}, "262690b6-c5ce-4cce": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 87.30208587646484, 24], "clickable": false, "set_of_marks": true}, "5d65b1cc-92a6-4e49": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 87.30208587646484, 24], "clickable": false, "set_of_marks": 0}, "3d35c129-9293-4201": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 20, 24], "clickable": false, "set_of_marks": true}, "41d62912-c7c8-421a": {"visibility": 1, "bbox": [349.66668701171875, 123.66667175292969, 20, 16], "clickable": false, "set_of_marks": true}, "d05a1854-6f39-424d": {"visibility": 1, "bbox": [352.66668701171875, 124.66667175292969, 14, 14], "clickable": false, "set_of_marks": true}, "411509c0-5b02-4dd4": {"visibility": 1, "bbox": [377.66668701171875, 120.33333587646484, 59.302085876464844, 24], "clickable": false, "set_of_marks": true}, "275d56b2-513c-4c48": {"visibility": 0.49218984423086787, "bbox": [349.66668701171875, 152.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.49218984423086787, "bbox": [349.66668701171875, 152.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.49218984423086787, "bbox": [349.66668701171875, 152.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 1, "bbox": [349.66668701171875, 153, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 1, "bbox": [349.66668701171875, 153, 514.625, 22], "clickable": false, "set_of_marks": true}, "6cffd73b-fbf4-4c5c": {"visibility": 1, "bbox": [349.66668701171875, 184.33334350585938, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 1, "bbox": [375.66668701171875, 184.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 1, "bbox": [381.66668701171875, 185, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 1, "bbox": [381.66668701171875, 185, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 1, "bbox": [381.66668701171875, 185, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 1, "bbox": [381.66668701171875, 185, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 209, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 209, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 209, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 205.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 205.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 209.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 242.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 243, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 243, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 243, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 243, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 267, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 267, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 267, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 263.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 263.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 267.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 300.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 301, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 301, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 301, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 301, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 325, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 325, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 325, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 321.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 321.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 325.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 358.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 359, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 359, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 359, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 359, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 383, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 383, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 383, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 379.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 379.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 383.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 416.3333435058594, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 417, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 417, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 417, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 417, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 417, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 417, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 417, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 413.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 413.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 417.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 450.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 451, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 451, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 451, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 451, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 475, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 475, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 475, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 471.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 471.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 475.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 508.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 509, 735.3646240234375, 70], "clickable": false, "set_of_marks": 0}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 509, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 509, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 509, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 557, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 557, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 557, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 553.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 553.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 557.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 590.3333740234375, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 591, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 591, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 591, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 591, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 0, "bbox": [48, -803.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "116d5fe3-1a03-475a": {"visibility": 0, "bbox": [48, -803.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "0cb8fea0-59b9-471d": {"visibility": 0, "bbox": [48, -803.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "0c549d5d-7194-4927": {"visibility": 0, "bbox": [48, -803.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "c223124f-5e5a-4068": {"visibility": 0, "bbox": [48, -803.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "c44ad642-bf7f-4c9d": {"visibility": 0, "bbox": [48, -803.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 0, "bbox": [48, -767.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 0, "bbox": [48, -767.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "e95e6237-5174-4bbc": {"visibility": 0, "bbox": [48, -767.34375, 145.140625, 17], "clickable": false, "set_of_marks": false}, "c3e0f0b2-c02f-437d": {"visibility": 0, "bbox": [48, -767.34375, 145.140625, 17], "clickable": false, "set_of_marks": false}, "9b033c7c-beab-40e3": {"visibility": 0, "bbox": [193.140625, -767.34375, 730.734375, 17], "clickable": false, "set_of_marks": false}, "7b69e0ef-cd41-4e44": {"visibility": 0, "bbox": [48, -749.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "af274418-9d9a-4391": {"visibility": 0, "bbox": [48, -749.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "f135bd82-7322-4bee": {"visibility": 0, "bbox": [48, -749.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "4a344f00-0347-467c": {"visibility": 0, "bbox": [48, -749.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ad704739-a984-489c": {"visibility": 0, "bbox": [48, -749.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "7572012a-e89a-4b59": {"visibility": 0, "bbox": [48, -749.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 0, "bbox": [48, -713.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 0, "bbox": [48, -713.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "932b021b-6a97-422f": {"visibility": 0, "bbox": [48, -713.34375, 91.984375, 17], "clickable": false, "set_of_marks": false}, "6e344c53-ab99-4a3e": {"visibility": 0, "bbox": [48, -713.34375, 91.984375, 17], "clickable": false, "set_of_marks": false}, "c13f4f01-082c-42dc": {"visibility": 0, "bbox": [139.984375, -713.34375, 610.765625, 17], "clickable": false, "set_of_marks": false}, "0c7f39b2-d7f0-4d06": {"visibility": 0, "bbox": [48, -695.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "bf9d23cb-ffe8-42a8": {"visibility": 0, "bbox": [48, -695.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "0c5d0d86-9405-414a": {"visibility": 0, "bbox": [48, -695.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "4b0a7571-d1a1-4b2f": {"visibility": 0, "bbox": [48, -695.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "bd6ae1fd-313a-4fd2": {"visibility": 0, "bbox": [48, -695.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1befafbc-1ff1-44fa": {"visibility": 0, "bbox": [48, -695.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 0, "bbox": [8, -643.34375, 582.4375, 17], "clickable": false, "set_of_marks": false}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -625.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -625.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 1560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-2-0.json b/demonstrations/ieckqwf/extra_element_properties/page-2-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5db0542cd7dbecc5cb548dfc90fcdd4b102f6c01 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-2-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.761849710982659, "bbox": [0, -206, 1263.3333740234375, 865], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.761849710982659, "bbox": [0, -206, 1263.3333740234375, 865], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.761849710982659, "bbox": [0, -206, 1263.3333740234375, 865], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.761849710982659, "bbox": [0, -206, 1263.3333740234375, 865], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.761849710982659, "bbox": [0, -206, 1263.3333740234375, 865], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.761849710982659, "bbox": [0, -206, 220, 865], "clickable": false, "set_of_marks": true}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -3499, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -2091, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.761849710982659, "bbox": [220, -206, 1043.3333740234375, 865], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.7645659928656362, "bbox": [220, -198, 1027.3333740234375, 841], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.7645659928656362, "bbox": [220, -198, 1027.3333740234375, 841], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.7645659928656362, "bbox": [220, -198, 1027.3333740234375, 841], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 32], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 14, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 14, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 14, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 14, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 14, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 14, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 14, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 14, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -1753, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -1753, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -1753, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -1753, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -1753, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -1472.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -1202.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -930.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -1472.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -1202.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -930.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -1472.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -1202.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -930.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -1472.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -489, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -489, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -489, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -487.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -489, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [547.6666870117188, 16, 448, 16], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [547.6666870117188, 16, 448, 16], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [547.6666870117188, 16, 448, 16], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 0, "bbox": [8, -471, 0, 0], "clickable": false, "set_of_marks": false}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1112.78125, 8, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 8, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 8, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 8, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 42.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 42.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 46.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 45.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 17, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 17, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 17.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 8, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 8, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 17, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 17, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 17.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 17, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -415.671875, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -415.671875, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -412.671875, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -412.34375, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -411.515625, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -412.671875, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.815989847715736, "bbox": [220, -145, 1027.3333740234375, 788], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.8109375, "bbox": [349.66668701171875, -121, 768, 640], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -394.671875, 1264, 114], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -394.671875, 1264, 114], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -394.671875, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -394.671875, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -394.671875, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -394.671875, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -394.671875, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -298.671875, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.8060897435897436, "bbox": [349.66668701171875, -121, 768, 624], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.8060897435897436, "bbox": [349.66668701171875, -121, 768, 624], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -280.671875, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -280.671875, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.8060897435897436, "bbox": [349.66668701171875, -121, 768, 624], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.8009868421052632, "bbox": [349.66668701171875, -121, 768, 608], "clickable": false, "set_of_marks": true}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -280.671875, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -280.671875, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -280.671875, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0.7302631578947368, "bbox": [349.66668701171875, -41, 768, 152], "clickable": false, "set_of_marks": true}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -262.671875, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -262.671875, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -262.671875, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -262.671875, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -230.671875, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0.9910714285714286, "bbox": [349.66668701171875, -1, 768, 112], "clickable": false, "set_of_marks": true}, "370e6816-b4f3-441e": {"visibility": 0.9910714285714286, "bbox": [349.66668701171875, -1, 768, 112], "clickable": false, "set_of_marks": 0}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -196.671875, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -196.671875, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -196.671875, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -196.671875, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0.9910714285714286, "bbox": [349.66668701171875, -1, 768, 112], "clickable": false, "set_of_marks": 0}, "a73f94e4-2be1-468e": {"visibility": 0.9910714285714286, "bbox": [349.66668701171875, -1, 768, 112], "clickable": false, "set_of_marks": 0}, "a296e17a-3fbf-4fbe": {"visibility": 0.9807692307692307, "bbox": [349.66668701171875, -1, 186, 52], "clickable": true, "set_of_marks": true}, "40223ff2-ec67-44bb": {"visibility": 0.9807692307692307, "bbox": [349.66668701171875, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "45a2b5e0-6e0f-4609": {"visibility": 0.9807692307692307, "bbox": [349.66668701171875, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "ec685cad-2276-4dfe": {"visibility": 1, "bbox": [357.66668701171875, 7, 170, 40], "clickable": false, "set_of_marks": true}, "b46f8877-710e-4581": {"visibility": 1, "bbox": [357.66668701171875, 7, 170, 16], "clickable": false, "set_of_marks": true}, "c3a6512d-dbb1-404e": {"visibility": 1, "bbox": [357.66668701171875, 7, 170, 16], "clickable": false, "set_of_marks": 0}, "56bb96c0-9d6f-439e": {"visibility": 1, "bbox": [357.66668701171875, 23, 170, 24], "clickable": false, "set_of_marks": true}, "caac51c4-cf29-4be9": {"visibility": 1, "bbox": [357.66668701171875, 27, 97.83333587646484, 16], "clickable": false, "set_of_marks": 0}, "ed315a3b-3fbb-4535": {"visibility": 1, "bbox": [357.66668701171875, 27, 16, 16], "clickable": false, "set_of_marks": true}, "12a3f3bd-35fd-48e4": {"visibility": 1, "bbox": [357.66668701171875, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "ef7e2444-275e-41cb": {"visibility": 1, "bbox": [357.66668701171875, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "1a80d0e3-e2e4-4443": {"visibility": 1, "bbox": [377.66668701171875, 27, 77.83333587646484, 16], "clickable": false, "set_of_marks": true}, "a48a9f2d-2e92-431a": {"visibility": 1, "bbox": [459.5, 23, 3.90625, 24], "clickable": false, "set_of_marks": true}, "127e909d-96b9-4103": {"visibility": 1, "bbox": [467.40625, 27, 4.208333492279053, 16], "clickable": false, "set_of_marks": true}, "fec27fa8-aef4-42a9": {"visibility": 0.9807692307692307, "bbox": [543.6666870117188, -1, 186, 52], "clickable": true, "set_of_marks": true}, "a917b887-1bea-4203": {"visibility": 0.9807692307692307, "bbox": [543.6666870117188, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "d62b89c4-22f1-4177": {"visibility": 0.9807692307692307, "bbox": [543.6666870117188, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "9fdafbad-19d2-4ad2": {"visibility": 1, "bbox": [551.6666870117188, 7, 170, 40], "clickable": false, "set_of_marks": true}, "676aea97-b445-4e7e": {"visibility": 1, "bbox": [551.6666870117188, 7, 170, 16], "clickable": false, "set_of_marks": true}, "afb00160-bf5d-4cee": {"visibility": 1, "bbox": [551.6666870117188, 7, 170, 16], "clickable": false, "set_of_marks": 0}, "0bda2a5c-95d2-426f": {"visibility": 1, "bbox": [551.6666870117188, 23, 170, 24], "clickable": false, "set_of_marks": true}, "fefe87b1-9278-4e85": {"visibility": 1, "bbox": [551.6666870117188, 27, 121.27083587646484, 16], "clickable": false, "set_of_marks": 0}, "2bca0f26-f911-4e14": {"visibility": 1, "bbox": [551.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": true}, "62996fea-cc04-4c37": {"visibility": 1, "bbox": [551.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "d0f59419-2518-4654": {"visibility": 1, "bbox": [551.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "5e70e550-40d9-4557": {"visibility": 1, "bbox": [571.6666870117188, 27, 101.27083587646484, 16], "clickable": false, "set_of_marks": true}, "c6588d87-4279-4789": {"visibility": 1, "bbox": [676.9375, 23, 3.90625, 24], "clickable": false, "set_of_marks": true}, "08f2aedb-ea0b-42ce": {"visibility": 1, "bbox": [684.84375, 27, 6.927083492279053, 16], "clickable": false, "set_of_marks": true}, "781a4dea-b71f-4339": {"visibility": 0.9807692307692307, "bbox": [737.6666870117188, -1, 186, 52], "clickable": true, "set_of_marks": true}, "9ab0924f-002a-4131": {"visibility": 0.9807692307692307, "bbox": [737.6666870117188, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "41332a3e-8183-42b7": {"visibility": 0.9807692307692307, "bbox": [737.6666870117188, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "fb5bd943-9d4b-498b": {"visibility": 1, "bbox": [745.6666870117188, 7, 170, 40], "clickable": false, "set_of_marks": true}, "91c48008-66f6-4822": {"visibility": 1, "bbox": [745.6666870117188, 7, 170, 16], "clickable": false, "set_of_marks": true}, "7fc3a830-7aea-4b6b": {"visibility": 1, "bbox": [745.6666870117188, 7, 170, 16], "clickable": false, "set_of_marks": 0}, "c69d470c-b20e-43c0": {"visibility": 1, "bbox": [745.6666870117188, 23, 170, 24], "clickable": false, "set_of_marks": true}, "89a25add-4f94-4257": {"visibility": 1, "bbox": [745.6666870117188, 27, 137.3125, 16], "clickable": false, "set_of_marks": 0}, "95219df4-5558-4819": {"visibility": 1, "bbox": [745.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": true}, "5683a5bd-85e2-4b20": {"visibility": 1, "bbox": [745.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "4b8a4caa-fa92-4797": {"visibility": 1, "bbox": [745.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "2c56cac0-24b7-4552": {"visibility": 1, "bbox": [765.6666870117188, 27, 117.3125, 16], "clickable": false, "set_of_marks": true}, "4ddbc830-f8c6-4938": {"visibility": 1, "bbox": [886.9791870117188, 23, 3.90625, 24], "clickable": false, "set_of_marks": true}, "35380cbf-159b-4c1f": {"visibility": 1, "bbox": [894.8854370117188, 27, 7.1354169845581055, 16], "clickable": false, "set_of_marks": true}, "3cf6dcc3-2dca-4390": {"visibility": 0.9807692307692307, "bbox": [931.6666870117188, -1, 186, 52], "clickable": true, "set_of_marks": true}, "bf09bc69-cf90-4c54": {"visibility": 0.9807692307692307, "bbox": [931.6666870117188, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "f7f10518-f6a2-40ab": {"visibility": 0.9807692307692307, "bbox": [931.6666870117188, -1, 186, 52], "clickable": false, "set_of_marks": 0}, "773ad79f-ae38-49d6": {"visibility": 1, "bbox": [939.6666870117188, 7, 170, 40], "clickable": false, "set_of_marks": true}, "c289791c-7f08-4dd6": {"visibility": 1, "bbox": [939.6666870117188, 7, 170, 16], "clickable": false, "set_of_marks": true}, "44b18b34-feac-4e3a": {"visibility": 1, "bbox": [939.6666870117188, 7, 170, 16], "clickable": false, "set_of_marks": 0}, "846721d4-3cf2-428c": {"visibility": 1, "bbox": [939.6666870117188, 23, 170, 24], "clickable": false, "set_of_marks": true}, "20a09b68-f784-477e": {"visibility": 1, "bbox": [939.6666870117188, 27, 66.79167175292969, 16], "clickable": false, "set_of_marks": true}, "43cca39e-0022-4fc0": {"visibility": 1, "bbox": [939.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": true}, "892f29c6-6401-4700": {"visibility": 1, "bbox": [939.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "1fef1718-b08f-4905": {"visibility": 1, "bbox": [939.6666870117188, 27, 16, 16], "clickable": false, "set_of_marks": 0}, "9e4f1485-534c-4283": {"visibility": 1, "bbox": [959.6666870117188, 27, 46.79166793823242, 16], "clickable": false, "set_of_marks": true}, "b5b4164a-f4c1-45d4": {"visibility": 1, "bbox": [1010.4583740234375, 23, 3.90625, 24], "clickable": false, "set_of_marks": true}, "5a6b1ec7-5ede-4c66": {"visibility": 1, "bbox": [1018.3646240234375, 27, 7.770833492279053, 16], "clickable": false, "set_of_marks": true}, "5456479d-7e77-4ec9": {"visibility": 1, "bbox": [349.66668701171875, 59, 186, 52], "clickable": true, "set_of_marks": true}, "039eefbc-512d-4f3b": {"visibility": 1, "bbox": [349.66668701171875, 59, 186, 52], "clickable": false, "set_of_marks": 0}, "64bd20ee-4420-43c3": {"visibility": 1, "bbox": [349.66668701171875, 59, 186, 52], "clickable": false, "set_of_marks": 0}, "1db606b7-036d-431d": {"visibility": 1, "bbox": [357.66668701171875, 67, 170, 40], "clickable": false, "set_of_marks": true}, "30f04103-6371-48f2": {"visibility": 1, "bbox": [357.66668701171875, 67, 170, 16], "clickable": false, "set_of_marks": true}, "bb8889c9-609c-456b": {"visibility": 1, "bbox": [357.66668701171875, 67, 170, 16], "clickable": false, "set_of_marks": 0}, "32542a4a-51b0-4ad2": {"visibility": 1, "bbox": [357.66668701171875, 83, 170, 24], "clickable": false, "set_of_marks": true}, "af0080d4-ffa5-4cb9": {"visibility": 1, "bbox": [357.66668701171875, 87, 105.0625, 16], "clickable": false, "set_of_marks": 0}, "4181bffb-648b-4373": {"visibility": 1, "bbox": [357.66668701171875, 87, 16, 16], "clickable": false, "set_of_marks": true}, "116e6b00-d660-4879": {"visibility": 1, "bbox": [357.66668701171875, 87, 16, 16], "clickable": false, "set_of_marks": 0}, "d454e062-474a-4f3d": {"visibility": 1, "bbox": [357.66668701171875, 87, 16, 16], "clickable": false, "set_of_marks": 0}, "208023bb-e533-4054": {"visibility": 1, "bbox": [377.66668701171875, 87, 85.0625, 16], "clickable": false, "set_of_marks": true}, "5999ad85-9f25-4c7e": {"visibility": 1, "bbox": [466.72918701171875, 83, 3.90625, 24], "clickable": false, "set_of_marks": true}, "d6d5cffd-7197-40c6": {"visibility": 1, "bbox": [474.63543701171875, 87, 7.677083492279053, 16], "clickable": false, "set_of_marks": true}, "a34ebdd8-4688-48df": {"visibility": 1, "bbox": [349.66668701171875, 135, 768, 320], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 1, "bbox": [349.66668701171875, 135, 768, 32], "clickable": false, "set_of_marks": true}, "4bac0e14-1da6-4aa6": {"visibility": 1, "bbox": [349.66668701171875, 135, 768, 24], "clickable": false, "set_of_marks": true}, "262690b6-c5ce-4cce": {"visibility": 1, "bbox": [349.66668701171875, 135, 87.30208587646484, 24], "clickable": false, "set_of_marks": true}, "5d65b1cc-92a6-4e49": {"visibility": 1, "bbox": [349.66668701171875, 135, 87.30208587646484, 24], "clickable": false, "set_of_marks": 0}, "3d35c129-9293-4201": {"visibility": 1, "bbox": [349.66668701171875, 135, 20, 24], "clickable": false, "set_of_marks": true}, "41d62912-c7c8-421a": {"visibility": 1, "bbox": [347.3178405761719, 133.5410919189453, 24.6976318359375, 25.58449363708496], "clickable": false, "set_of_marks": 0}, "d05a1854-6f39-424d": {"visibility": 1, "bbox": [348.4928894042969, 135.15953063964844, 22.347576141357422, 22.34761619567871], "clickable": false, "set_of_marks": 0}, "411509c0-5b02-4dd4": {"visibility": 1, "bbox": [377.66668701171875, 135, 59.302085876464844, 24], "clickable": false, "set_of_marks": true}, "275d56b2-513c-4c48": {"visibility": 1, "bbox": [349.66668701171875, 167, 768, 288], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 1, "bbox": [349.66668701171875, 167, 768, 288], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 1, "bbox": [349.66668701171875, 167, 768, 288], "clickable": false, "set_of_marks": 0}, "0f42964f-e0f9-4fcb": {"visibility": 1, "bbox": [349.66668701171875, 167.6666717529297, 768, 287.3333435058594], "clickable": false, "set_of_marks": 0}, "5179c955-09ae-4b67": {"visibility": 1, "bbox": [349.66668701171875, 167.6666717529297, 117.125, 22], "clickable": false, "set_of_marks": true}, "eb5109d8-22e1-4152": {"visibility": 1, "bbox": [466.79168701171875, 167.6666717529297, 122.65625, 22], "clickable": false, "set_of_marks": true}, "4f54728f-8a12-4bb8": {"visibility": 1, "bbox": [589.4479370117188, 167.6666717529297, 99.875, 22], "clickable": false, "set_of_marks": true}, "cfff987f-ebb8-41fe": {"visibility": 1, "bbox": [689.3229370117188, 167.6666717529297, 131.14584350585938, 22], "clickable": false, "set_of_marks": true}, "018db1e5-ff31-4691": {"visibility": 1, "bbox": [820.46875, 167.6666717529297, 43.84375, 22], "clickable": false, "set_of_marks": true}, "7521d548-3960-4933": {"visibility": 1, "bbox": [349.66668701171875, 199, 768, 256], "clickable": false, "set_of_marks": true}, "05bfc169-c4d9-42ff": {"visibility": 1, "bbox": [375.66668701171875, 199, 742, 50], "clickable": false, "set_of_marks": 0}, "73521c16-c015-40d7": {"visibility": 0, "bbox": [48, 311.328125, 0, 17], "clickable": false, "set_of_marks": false}, "3bb760c7-f2d1-4ae4": {"visibility": 1, "bbox": [381.66668701171875, 199.6666717529297, 708.5, 46], "clickable": false, "set_of_marks": true}, "75677ab0-4a6a-4823": {"visibility": 1, "bbox": [381.66668701171875, 199.6666717529297, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "977e92ac-6111-4ede": {"visibility": 1, "bbox": [381.66668701171875, 199.6666717529297, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "a15189cd-ec7d-437c": {"visibility": 1, "bbox": [665.2396240234375, 199.6666717529297, 38.864585876464844, 22], "clickable": false, "set_of_marks": true}, "88e61b45-f187-4d23": {"visibility": 1, "bbox": [704.1041870117188, 199.6666717529297, 124.38542175292969, 22], "clickable": false, "set_of_marks": true}, "1478b0c0-c044-4ef7": {"visibility": 1, "bbox": [828.4896240234375, 199.6666717529297, 98.05208587646484, 22], "clickable": false, "set_of_marks": true}, "9a1cadf4-031e-40d1": {"visibility": 1, "bbox": [926.5416870117188, 199.6666717529297, 127.92708587646484, 22], "clickable": false, "set_of_marks": true}, "76394606-ac62-48dc": {"visibility": 1, "bbox": [381.66668701171875, 199.6666717529297, 708.5, 46], "clickable": false, "set_of_marks": 0}, "9dacd335-fd49-4466": {"visibility": 1, "bbox": [450.25, 223.6666717529297, 139.36459350585938, 22], "clickable": false, "set_of_marks": true}, "0365b3c7-c0f0-4a74": {"visibility": 1, "bbox": [589.6146240234375, 223.6666717529297, 117.09375, 22], "clickable": false, "set_of_marks": true}, "de22f270-947f-4abe": {"visibility": 1, "bbox": [706.7083740234375, 223.6666717529297, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "92f8a889-4c46-46aa": {"visibility": 1, "bbox": [706.7083740234375, 223.6666717529297, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "9f1af41e-bf1f-4512": {"visibility": 1, "bbox": [710.7083740234375, 223.6666717529297, 16, 22], "clickable": true, "set_of_marks": true}, "963e53ed-aa6b-459d": {"visibility": 1, "bbox": [710.7083740234375, 220.20834350585938, 16, 24], "clickable": false, "set_of_marks": 0}, "2da264f7-2d71-44fb": {"visibility": 1, "bbox": [710.7083740234375, 220.20834350585938, 16, 24], "clickable": false, "set_of_marks": 0}, "60e8eee4-eaf8-455b": {"visibility": 1, "bbox": [710.7083740234375, 224.20834350585938, 16, 16], "clickable": false, "set_of_marks": true}, "4cb7a784-df6a-4acd": {"visibility": 0, "bbox": [52, 347.328125, 0, 17], "clickable": false, "set_of_marks": false}, "d0b9970f-2137-4476": {"visibility": 0, "bbox": [52, 347.328125, 0, 17], "clickable": false, "set_of_marks": false}, "6659bfc7-e02a-4627": {"visibility": 1, "bbox": [375.66668701171875, 257, 742, 50], "clickable": false, "set_of_marks": 0}, "29333270-4c21-4e8b": {"visibility": 0, "bbox": [48, 365.328125, 0, 17], "clickable": false, "set_of_marks": false}, "56da8963-bce5-4833": {"visibility": 1, "bbox": [381.66668701171875, 257.66668701171875, 728.71875, 46], "clickable": false, "set_of_marks": true}, "876c0aec-aeff-4149": {"visibility": 1, "bbox": [381.66668701171875, 257.66668701171875, 289.29168701171875, 22], "clickable": false, "set_of_marks": true}, "19d9b8fd-6a66-429a": {"visibility": 1, "bbox": [381.66668701171875, 257.66668701171875, 289.29168701171875, 22], "clickable": false, "set_of_marks": 0}, "78bb3db0-f4aa-4a5b": {"visibility": 1, "bbox": [670.9583740234375, 257.66668701171875, 51.333335876464844, 22], "clickable": false, "set_of_marks": true}, "959a5cff-c570-4c85": {"visibility": 1, "bbox": [722.2916870117188, 257.66668701171875, 124.5, 22], "clickable": false, "set_of_marks": true}, "bd418c66-ad76-4cc2": {"visibility": 1, "bbox": [846.7916870117188, 257.66668701171875, 132.05209350585938, 22], "clickable": false, "set_of_marks": true}, "40c48014-932f-4efa": {"visibility": 1, "bbox": [978.84375, 257.66668701171875, 131.5416717529297, 22], "clickable": false, "set_of_marks": true}, "c6a81f17-2014-404b": {"visibility": 1, "bbox": [381.66668701171875, 281.66668701171875, 102.85417175292969, 22], "clickable": false, "set_of_marks": true}, "9438724e-f1b1-4c52": {"visibility": 1, "bbox": [484.5208435058594, 281.66668701171875, 181.21875, 22], "clickable": false, "set_of_marks": true}, "8f7ceaa6-b5ea-41f8": {"visibility": 1, "bbox": [665.7396240234375, 281.66668701171875, 37.625, 22], "clickable": false, "set_of_marks": true}, "274bddde-692b-460c": {"visibility": 1, "bbox": [703.3646240234375, 281.66668701171875, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "287738ba-dd11-4892": {"visibility": 1, "bbox": [703.3646240234375, 281.66668701171875, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "461c14bb-9e54-45f9": {"visibility": 1, "bbox": [707.3646240234375, 281.66668701171875, 16, 22], "clickable": true, "set_of_marks": true}, "f3cccfb7-6a98-4da5": {"visibility": 1, "bbox": [707.3646240234375, 278.2083435058594, 16, 24], "clickable": false, "set_of_marks": 0}, "de79df75-719a-4c6d": {"visibility": 1, "bbox": [707.3646240234375, 278.2083435058594, 16, 24], "clickable": false, "set_of_marks": 0}, "22e0fde9-e9f8-4f86": {"visibility": 1, "bbox": [707.3646240234375, 282.2083435058594, 16, 16], "clickable": false, "set_of_marks": true}, "98402675-ae63-428a": {"visibility": 0, "bbox": [52, 401.328125, 0, 17], "clickable": false, "set_of_marks": false}, "21c1afde-d9ac-4780": {"visibility": 0, "bbox": [52, 401.328125, 0, 17], "clickable": false, "set_of_marks": false}, "f0647b08-60f5-45ec": {"visibility": 1, "bbox": [375.66668701171875, 315, 742, 50], "clickable": false, "set_of_marks": 0}, "b0868f56-b16b-4714": {"visibility": 0, "bbox": [48, 419.328125, 0, 17], "clickable": false, "set_of_marks": false}, "4ac50467-4777-4d33": {"visibility": 1, "bbox": [381.66668701171875, 315.66668701171875, 659.8541870117188, 46], "clickable": false, "set_of_marks": true}, "e65e2d00-a235-40b5": {"visibility": 1, "bbox": [381.66668701171875, 315.66668701171875, 173.8854217529297, 22], "clickable": false, "set_of_marks": true}, "f095f932-b0da-46eb": {"visibility": 1, "bbox": [381.66668701171875, 315.66668701171875, 173.8854217529297, 22], "clickable": false, "set_of_marks": 0}, "e9ffcaa8-2e66-4b6c": {"visibility": 1, "bbox": [555.5521240234375, 315.66668701171875, 41.54166793823242, 22], "clickable": false, "set_of_marks": true}, "991deeed-e85e-4483": {"visibility": 1, "bbox": [597.09375, 315.66668701171875, 102.83333587646484, 22], "clickable": false, "set_of_marks": true}, "7fe6b6e7-895c-4e5c": {"visibility": 1, "bbox": [699.9271240234375, 315.66668701171875, 131.14584350585938, 22], "clickable": false, "set_of_marks": true}, "b97acb21-435d-449c": {"visibility": 1, "bbox": [831.0729370117188, 315.66668701171875, 119.98958587646484, 22], "clickable": false, "set_of_marks": true}, "29596457-4a29-4acc": {"visibility": 1, "bbox": [381.66668701171875, 315.66668701171875, 659.8541870117188, 46], "clickable": false, "set_of_marks": 0}, "f3c7fe31-45ca-4dfc": {"visibility": 1, "bbox": [457.6875, 339.66668701171875, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "9c925b37-8e40-4057": {"visibility": 1, "bbox": [457.6875, 339.66668701171875, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0afda04f-b479-4f02": {"visibility": 1, "bbox": [461.6875, 339.66668701171875, 16, 22], "clickable": true, "set_of_marks": true}, "26aa487b-47c1-4ed7": {"visibility": 1, "bbox": [461.6875, 336.2083435058594, 16, 24], "clickable": false, "set_of_marks": 0}, "eb73973f-b08d-401f": {"visibility": 1, "bbox": [461.6875, 336.2083435058594, 16, 24], "clickable": false, "set_of_marks": 0}, "1a38b8c9-f54e-46fe": {"visibility": 1, "bbox": [461.6875, 340.2083435058594, 16, 16], "clickable": false, "set_of_marks": true}, "6e345983-ffc9-44ee": {"visibility": 0, "bbox": [52, 455.328125, 0, 17], "clickable": false, "set_of_marks": false}, "19b48bbc-44fa-41f3": {"visibility": 0, "bbox": [52, 455.328125, 0, 17], "clickable": false, "set_of_marks": false}, "1a47d74e-5c22-4982": {"visibility": 1, "bbox": [375.66668701171875, 373, 742, 50], "clickable": false, "set_of_marks": 0}, "9f5cbbfe-2fa8-4a3d": {"visibility": 0, "bbox": [48, 473.328125, 0, 17], "clickable": false, "set_of_marks": false}, "71191ee7-7a51-42ac": {"visibility": 1, "bbox": [381.66668701171875, 373.66668701171875, 659.6666870117188, 46], "clickable": false, "set_of_marks": true}, "678fc46f-2e6f-4c88": {"visibility": 1, "bbox": [381.66668701171875, 373.66668701171875, 193.3125, 22], "clickable": false, "set_of_marks": true}, "53137e8a-72df-4701": {"visibility": 1, "bbox": [381.66668701171875, 373.66668701171875, 193.3125, 22], "clickable": false, "set_of_marks": 0}, "acb52a33-edad-4eff": {"visibility": 1, "bbox": [574.9791870117188, 373.66668701171875, 138.0416717529297, 22], "clickable": false, "set_of_marks": true}, "d6a36752-6eb1-4b41": {"visibility": 1, "bbox": [713.0208740234375, 373.66668701171875, 118.16667175292969, 22], "clickable": false, "set_of_marks": true}, "e073f130-5593-4afd": {"visibility": 0, "bbox": [425.265625, 473.328125, 0, 17], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 1, "bbox": [349.66668701171875, 463, 768, 24], "clickable": false, "set_of_marks": true}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 507.328125, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "add4ab5c-9978-4f9b": {"visibility": 1, "bbox": [397.66668701171875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "dfe84368-f85f-4dba": {"visibility": 1, "bbox": [397.66668701171875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": 0}, "ff50a24c-482e-4753": {"visibility": 1, "bbox": [331.375, 492.66668701171875, 172.59375, 24], "clickable": false, "set_of_marks": true}, "5ff2f27e-e80d-468e": {"visibility": 1, "bbox": [331.375, 492.66668701171875, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "88d2788b-070c-4ba5": {"visibility": 1, "bbox": [339.375, 496.66668701171875, 156.59375, 16], "clickable": false, "set_of_marks": true}, "017222ed-7256-43f8": {"visibility": 1, "bbox": [339.375, 496, 156.59375, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "86c60d34-213e-491a": {"visibility": 1, "bbox": [405.16668701171875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "e5ca6ecd-bec0-4b5a": {"visibility": 1, "bbox": [405.16668701171875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "ff961423-d901-4eb6": {"visibility": 1, "bbox": [410.16668701171875, 533.1666870117188, 15, 15], "clickable": false, "set_of_marks": true}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [441.66668701171875, 504, 660, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [441.66668701171875, 504, 660, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [441.66668701171875, 504, 660, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [441.66668701171875, 504, 660, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [441.66668701171875, 504, 660, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [449.66668701171875, 512, 644, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [449.66668701171875, 512, 644, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 602.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 639.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 639.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 639.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 639.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 639.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 639.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 639.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 657.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 657.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 657.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 675.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 675.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 675.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 693.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 693.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 693.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 711.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [636, -3507, 644, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 711.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 710.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -3507, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -3507, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -3507, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -3507, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -3507, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-20-0.json b/demonstrations/ieckqwf/extra_element_properties/page-20-0.json new file mode 100644 index 0000000000000000000000000000000000000000..4d91f2f8037d56257c46bfeac61eb02236b6b880 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-20-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -220.6666717529297, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -4111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -2703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -220.6666717529297, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -212.6666717529297, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -212.6666717529297, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -212.6666717529297, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -2333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -2052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -1069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -1067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -1069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -159.6666717529297, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -135.6666717529297, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -135.6666717529297, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -135.6666717529297, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -135.6666717529297, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -135.6666717529297, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0.6337719214589972, "bbox": [349.66668701171875, -55.66666793823242, 768, 152], "clickable": false, "set_of_marks": true}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": true}, "370e6816-b4f3-441e": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": 0}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": 0}, "a73f94e4-2be1-468e": {"visibility": 0.8601190447807312, "bbox": [349.66668701171875, -15.666666984558105, 768, 112], "clickable": false, "set_of_marks": 0}, "a296e17a-3fbf-4fbe": {"visibility": 0.6987179426046518, "bbox": [349.66668701171875, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "40223ff2-ec67-44bb": {"visibility": 0.6987179426046518, "bbox": [349.66668701171875, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "45a2b5e0-6e0f-4609": {"visibility": 0.6987179426046518, "bbox": [349.66668701171875, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "ec685cad-2276-4dfe": {"visibility": 0.8083333253860474, "bbox": [357.66668701171875, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "b46f8877-710e-4581": {"visibility": 0.5208333134651184, "bbox": [357.66668701171875, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "c3a6512d-dbb1-404e": {"visibility": 0.5208333134651184, "bbox": [357.66668701171875, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "56bb96c0-9d6f-439e": {"visibility": 1, "bbox": [357.66668701171875, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "caac51c4-cf29-4be9": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 97.83333587646484, 16], "clickable": false, "set_of_marks": 0}, "ed315a3b-3fbb-4535": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "12a3f3bd-35fd-48e4": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "ef7e2444-275e-41cb": {"visibility": 1, "bbox": [357.66668701171875, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "1a80d0e3-e2e4-4443": {"visibility": 1, "bbox": [377.66668701171875, 12.333333969116211, 77.83333587646484, 16], "clickable": false, "set_of_marks": true}, "a48a9f2d-2e92-431a": {"visibility": 1, "bbox": [459.5, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "127e909d-96b9-4103": {"visibility": 1, "bbox": [467.40625, 12.333333969116211, 4.208333492279053, 16], "clickable": false, "set_of_marks": true}, "fec27fa8-aef4-42a9": {"visibility": 0.6987179426046518, "bbox": [543.6666870117188, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "a917b887-1bea-4203": {"visibility": 0.6987179426046518, "bbox": [543.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "d62b89c4-22f1-4177": {"visibility": 0.6987179426046518, "bbox": [543.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "9fdafbad-19d2-4ad2": {"visibility": 0.8083333253860474, "bbox": [551.6666870117188, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "676aea97-b445-4e7e": {"visibility": 0.5208333134651184, "bbox": [551.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "afb00160-bf5d-4cee": {"visibility": 0.5208333134651184, "bbox": [551.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "0bda2a5c-95d2-426f": {"visibility": 1, "bbox": [551.6666870117188, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "fefe87b1-9278-4e85": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 121.27083587646484, 16], "clickable": false, "set_of_marks": 0}, "2bca0f26-f911-4e14": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "62996fea-cc04-4c37": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "d0f59419-2518-4654": {"visibility": 1, "bbox": [551.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "5e70e550-40d9-4557": {"visibility": 1, "bbox": [571.6666870117188, 12.333333969116211, 101.27083587646484, 16], "clickable": false, "set_of_marks": true}, "c6588d87-4279-4789": {"visibility": 1, "bbox": [676.9375, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "08f2aedb-ea0b-42ce": {"visibility": 1, "bbox": [684.84375, 12.333333969116211, 6.927083492279053, 16], "clickable": false, "set_of_marks": true}, "781a4dea-b71f-4339": {"visibility": 0.6987179426046518, "bbox": [737.6666870117188, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "9ab0924f-002a-4131": {"visibility": 0.6987179426046518, "bbox": [737.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "41332a3e-8183-42b7": {"visibility": 0.6987179426046518, "bbox": [737.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "fb5bd943-9d4b-498b": {"visibility": 0.8083333253860474, "bbox": [745.6666870117188, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "91c48008-66f6-4822": {"visibility": 0.5208333134651184, "bbox": [745.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "7fc3a830-7aea-4b6b": {"visibility": 0.5208333134651184, "bbox": [745.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "c69d470c-b20e-43c0": {"visibility": 1, "bbox": [745.6666870117188, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "89a25add-4f94-4257": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 137.3125, 16], "clickable": false, "set_of_marks": 0}, "95219df4-5558-4819": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "5683a5bd-85e2-4b20": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "4b8a4caa-fa92-4797": {"visibility": 1, "bbox": [745.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "2c56cac0-24b7-4552": {"visibility": 1, "bbox": [765.6666870117188, 12.333333969116211, 117.3125, 16], "clickable": false, "set_of_marks": true}, "4ddbc830-f8c6-4938": {"visibility": 1, "bbox": [886.9791870117188, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "35380cbf-159b-4c1f": {"visibility": 1, "bbox": [894.8854370117188, 12.333333969116211, 7.1354169845581055, 16], "clickable": false, "set_of_marks": true}, "3cf6dcc3-2dca-4390": {"visibility": 0.6987179426046518, "bbox": [931.6666870117188, -15.666666984558105, 186, 52], "clickable": true, "set_of_marks": true}, "bf09bc69-cf90-4c54": {"visibility": 0.6987179426046518, "bbox": [931.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "f7f10518-f6a2-40ab": {"visibility": 0.6987179426046518, "bbox": [931.6666870117188, -15.666666984558105, 186, 52], "clickable": false, "set_of_marks": 0}, "773ad79f-ae38-49d6": {"visibility": 0.8083333253860474, "bbox": [939.6666870117188, -7.6666669845581055, 170, 40], "clickable": false, "set_of_marks": true}, "c289791c-7f08-4dd6": {"visibility": 0.5208333134651184, "bbox": [939.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": true}, "44b18b34-feac-4e3a": {"visibility": 0.5208333134651184, "bbox": [939.6666870117188, -7.6666669845581055, 170, 16], "clickable": false, "set_of_marks": 0}, "846721d4-3cf2-428c": {"visibility": 1, "bbox": [939.6666870117188, 8.333333969116211, 170, 24], "clickable": false, "set_of_marks": true}, "20a09b68-f784-477e": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 66.79167175292969, 16], "clickable": false, "set_of_marks": true}, "43cca39e-0022-4fc0": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": true}, "892f29c6-6401-4700": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "1fef1718-b08f-4905": {"visibility": 1, "bbox": [939.6666870117188, 12.333333969116211, 16, 16], "clickable": false, "set_of_marks": 0}, "9e4f1485-534c-4283": {"visibility": 1, "bbox": [959.6666870117188, 12.333333969116211, 46.79166793823242, 16], "clickable": false, "set_of_marks": true}, "b5b4164a-f4c1-45d4": {"visibility": 1, "bbox": [1010.4583740234375, 8.333333969116211, 3.90625, 24], "clickable": false, "set_of_marks": true}, "5a6b1ec7-5ede-4c66": {"visibility": 1, "bbox": [1018.3646240234375, 12.333333969116211, 7.770833492279053, 16], "clickable": false, "set_of_marks": true}, "5456479d-7e77-4ec9": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 186, 52], "clickable": true, "set_of_marks": true}, "039eefbc-512d-4f3b": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 186, 52], "clickable": false, "set_of_marks": 0}, "64bd20ee-4420-43c3": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 186, 52], "clickable": false, "set_of_marks": 0}, "1db606b7-036d-431d": {"visibility": 1, "bbox": [357.66668701171875, 52.333335876464844, 170, 40], "clickable": false, "set_of_marks": true}, "30f04103-6371-48f2": {"visibility": 1, "bbox": [357.66668701171875, 52.333335876464844, 170, 16], "clickable": false, "set_of_marks": true}, "bb8889c9-609c-456b": {"visibility": 1, "bbox": [357.66668701171875, 52.333335876464844, 170, 16], "clickable": false, "set_of_marks": 0}, "32542a4a-51b0-4ad2": {"visibility": 1, "bbox": [357.66668701171875, 68.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "af0080d4-ffa5-4cb9": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 105.0625, 16], "clickable": false, "set_of_marks": 0}, "4181bffb-648b-4373": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "116e6b00-d660-4879": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "d454e062-474a-4f3d": {"visibility": 1, "bbox": [357.66668701171875, 72.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "208023bb-e533-4054": {"visibility": 1, "bbox": [377.66668701171875, 72.33333587646484, 85.0625, 16], "clickable": false, "set_of_marks": true}, "5999ad85-9f25-4c7e": {"visibility": 1, "bbox": [466.72918701171875, 68.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "d6d5cffd-7197-40c6": {"visibility": 1, "bbox": [474.63543701171875, 72.33333587646484, 7.677083492279053, 16], "clickable": false, "set_of_marks": true}, "a34ebdd8-4688-48df": {"visibility": 0.49003473967465566, "bbox": [349.66668701171875, 120.33333587646484, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 768, 32], "clickable": false, "set_of_marks": true}, "4bac0e14-1da6-4aa6": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 768, 24], "clickable": false, "set_of_marks": true}, "262690b6-c5ce-4cce": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 87.30208587646484, 24], "clickable": false, "set_of_marks": true}, "5d65b1cc-92a6-4e49": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 87.30208587646484, 24], "clickable": false, "set_of_marks": 0}, "3d35c129-9293-4201": {"visibility": 1, "bbox": [349.66668701171875, 120.33333587646484, 20, 24], "clickable": false, "set_of_marks": true}, "41d62912-c7c8-421a": {"visibility": 1, "bbox": [349.66668701171875, 123.66667175292969, 20, 16], "clickable": false, "set_of_marks": true}, "d05a1854-6f39-424d": {"visibility": 1, "bbox": [352.66668701171875, 124.66667175292969, 14, 14], "clickable": false, "set_of_marks": true}, "411509c0-5b02-4dd4": {"visibility": 1, "bbox": [377.66668701171875, 120.33333587646484, 59.302085876464844, 24], "clickable": false, "set_of_marks": true}, "275d56b2-513c-4c48": {"visibility": 0.49218984423086787, "bbox": [349.66668701171875, 152.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.49218984423086787, "bbox": [349.66668701171875, 152.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.49218984423086787, "bbox": [349.66668701171875, 152.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 1, "bbox": [349.66668701171875, 153, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 1, "bbox": [349.66668701171875, 153, 514.625, 22], "clickable": false, "set_of_marks": true}, "6cffd73b-fbf4-4c5c": {"visibility": 1, "bbox": [349.66668701171875, 184.33334350585938, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 1, "bbox": [375.66668701171875, 184.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 1, "bbox": [381.66668701171875, 185, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 1, "bbox": [381.66668701171875, 185, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 1, "bbox": [381.66668701171875, 185, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 1, "bbox": [381.66668701171875, 185, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 209, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 209, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 209, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 205.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 205.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 209.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 242.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 243, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 243, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 243, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 243, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 267, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 267, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 267, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 263.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 263.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 267.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 300.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -91.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 301, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 301, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 301, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 301, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 325, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 325, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 325, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 321.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 321.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 325.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 358.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -37.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 359, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 359, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 359, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 359, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 383, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 383, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 383, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 379.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 379.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 383.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 416.3333435058594, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, 16.65625, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 417, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 417, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 417, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 417, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 417, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 417, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 417, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 413.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 413.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 417.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 450.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, 70.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 451, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 451, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 451, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 451, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 475, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 475, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 475, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 471.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 471.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 475.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 508.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, 124.65625, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 509, 735.3646240234375, 70], "clickable": false, "set_of_marks": 0}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 509, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 509, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 509, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 557, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 557, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 557, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 553.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 553.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 557.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 590.3333740234375, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, 178.65625, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 591, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 591, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 591, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 591, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 0, "bbox": [48, 196.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "116d5fe3-1a03-475a": {"visibility": 0, "bbox": [48, 196.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "0cb8fea0-59b9-471d": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "0c549d5d-7194-4927": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "c223124f-5e5a-4068": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "c44ad642-bf7f-4c9d": {"visibility": 0, "bbox": [48, 196.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 0, "bbox": [48, 232.65625, 1224, 54], "clickable": false, "set_of_marks": false}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, 232.65625, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 0, "bbox": [48, 232.65625, 1224, 53], "clickable": false, "set_of_marks": false}, "e95e6237-5174-4bbc": {"visibility": 0, "bbox": [48, 232.65625, 145.140625, 17], "clickable": false, "set_of_marks": false}, "c3e0f0b2-c02f-437d": {"visibility": 0, "bbox": [48, 232.65625, 145.140625, 17], "clickable": false, "set_of_marks": false}, "9b033c7c-beab-40e3": {"visibility": 0, "bbox": [193.140625, 232.65625, 730.734375, 17], "clickable": false, "set_of_marks": false}, "7b69e0ef-cd41-4e44": {"visibility": 0, "bbox": [48, 250.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "af274418-9d9a-4391": {"visibility": 0, "bbox": [48, 250.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "f135bd82-7322-4bee": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "4a344f00-0347-467c": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "ad704739-a984-489c": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "7572012a-e89a-4b59": {"visibility": 0, "bbox": [48, 250.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 0, "bbox": [48, 286.65625, 1224, 54], "clickable": false, "set_of_marks": false}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, 286.65625, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 0, "bbox": [48, 286.65625, 1224, 53], "clickable": false, "set_of_marks": false}, "932b021b-6a97-422f": {"visibility": 0, "bbox": [48, 286.65625, 91.984375, 17], "clickable": false, "set_of_marks": false}, "6e344c53-ab99-4a3e": {"visibility": 0, "bbox": [48, 286.65625, 91.984375, 17], "clickable": false, "set_of_marks": false}, "c13f4f01-082c-42dc": {"visibility": 0, "bbox": [139.984375, 286.65625, 610.765625, 17], "clickable": false, "set_of_marks": false}, "0c7f39b2-d7f0-4d06": {"visibility": 0, "bbox": [48, 304.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "bf9d23cb-ffe8-42a8": {"visibility": 0, "bbox": [48, 304.65625, 1224, 35], "clickable": false, "set_of_marks": false}, "0c5d0d86-9405-414a": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": true, "set_of_marks": false}, "4b0a7571-d1a1-4b2f": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "bd6ae1fd-313a-4fd2": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "1befafbc-1ff1-44fa": {"visibility": 0, "bbox": [48, 304.65625, 1224, 18], "clickable": false, "set_of_marks": false}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 0, "bbox": [8, 356.65625, 582.4375, 17], "clickable": false, "set_of_marks": false}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, 374.65625, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, 374.65625, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 2560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 1374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 2578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 3497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 3497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 3515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 3515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 3497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 3515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 3516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 3497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 3515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 3515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 3497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 3515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 3515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 3531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 3531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 3547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 3583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 3583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 3585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 3617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 3617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 3619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 3651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 3651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 3653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 3667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 3725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 3762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 3762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 3762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 3780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 3780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 3780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 3798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 3798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 3798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 3816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 3816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 3816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 3834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -4119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 3834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 3833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-25-0.json b/demonstrations/ieckqwf/extra_element_properties/page-25-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5c41d43eb3302b073b178d43845339051959e7bf --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-25-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -420.66668701171875, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -359.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -335.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -335.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -1689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -1673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -1655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -1637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -1601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -1585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -1567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -1549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -1513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -1497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -1479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -1461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -1425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -1409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -1391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -1373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -1337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -1321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -1303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -1285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -79.66667175292969, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -1267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -1266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -1251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.9258675078864353, "bbox": [349.66668701171875, -47, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -1233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.9726107220549683, "bbox": [349.66668701171875, -15.666666984558105, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0.6866666603088379, "bbox": [375.66668701171875, -15.666666984558105, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 9, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 9.541666984558105, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 42.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 67, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 67.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 100.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 125, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 125.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 158.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 183, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 183.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 216.33334350585938, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 217, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 217, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 217, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 217.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 250.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 275, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 275.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 308.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 357, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 357.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 390.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 415, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 415.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 448.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 473, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 473.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 506.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 531, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 531.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 565, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -625.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -625.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 1560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-28-0.json b/demonstrations/ieckqwf/extra_element_properties/page-28-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5c41d43eb3302b073b178d43845339051959e7bf --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-28-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -420.66668701171875, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -359.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -335.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -335.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -1689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -1673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -1655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -1637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -1601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -1585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -1567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -1549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -1513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -1497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -1479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -1461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -1425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -1409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -1391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -1373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -1337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -1321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -1303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -1285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -79.66667175292969, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -1267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -1266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -1251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.9258675078864353, "bbox": [349.66668701171875, -47, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -1233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.9726107220549683, "bbox": [349.66668701171875, -15.666666984558105, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0.6866666603088379, "bbox": [375.66668701171875, -15.666666984558105, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 9, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 9.541666984558105, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 42.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 67, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 67.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 100.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 125, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 125.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 158.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 183, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 183.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 216.33334350585938, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 217, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 217, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 217, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 217.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 250.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 275, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 275.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 308.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 357, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 357.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 390.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 415, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 415.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 448.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 473, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 473.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 506.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 531, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 531.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 565, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -625.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -625.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 1560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-32-0.json b/demonstrations/ieckqwf/extra_element_properties/page-32-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5c41d43eb3302b073b178d43845339051959e7bf --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-32-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -420.66668701171875, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -359.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -335.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -335.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -1689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -1673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -1655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -1637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -1601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -1585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -1567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -1549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -1513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -1497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -1479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -1461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -1425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -1409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -1391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -1373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -1337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -1321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -1303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -1285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -79.66667175292969, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -1267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -1266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -1251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.9258675078864353, "bbox": [349.66668701171875, -47, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -1233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.9726107220549683, "bbox": [349.66668701171875, -15.666666984558105, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0.6866666603088379, "bbox": [375.66668701171875, -15.666666984558105, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 9, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 9.541666984558105, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 42.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 67, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 67.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 100.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 125, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 125.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 158.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 183, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 183.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 216.33334350585938, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 217, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 217, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 217, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 217.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 250.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 275, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 275.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 308.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 357, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 357.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 390.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 415, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 415.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 448.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 473, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 473.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 506.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 531, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 531.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 565, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -625.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -625.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 1560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-34-0.json b/demonstrations/ieckqwf/extra_element_properties/page-34-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5cec89ea8b9bb2db462e591f94cabfc0f1520e56 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-34-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -4111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -2703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -420.66668701171875, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -2333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -2052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -1069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -1067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -1069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -359.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -335.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -335.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -79.66667175292969, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.9258675078864353, "bbox": [349.66668701171875, -47, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.9726107220549683, "bbox": [349.66668701171875, -15.666666984558105, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0.6866666603088379, "bbox": [375.66668701171875, -15.666666984558105, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 9, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 9.541666984558105, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 42.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 67, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 67.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 100.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -91.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 125, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 125.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 158.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -37.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 183, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 183.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 216.33334350585938, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, 16.65625, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 217, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 217, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 217, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 217.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 250.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, 70.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 275, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 275.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 308.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, 124.65625, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 357, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 357.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 390.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, 178.65625, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 415, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 415.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 448.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, 232.65625, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 473, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 473.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 506.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, 286.65625, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 531, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 531.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 565, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, 374.65625, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, 374.65625, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 2560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 1374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 2578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 3497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 3497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 3515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 3515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 3497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 3515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 3516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 3497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 3515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 3515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 3497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 3515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 3515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 3531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 3531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 3547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 3583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 3583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 3585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 3617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 3617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 3619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 3651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 3651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 3653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 3667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 3725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 3762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 3762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 3762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 3780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 3780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 3780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 3798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 3798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 3798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 3816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 3816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 3816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 3834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -4119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 3834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 3833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-35-0.json b/demonstrations/ieckqwf/extra_element_properties/page-35-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5cec89ea8b9bb2db462e591f94cabfc0f1520e56 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-35-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -4111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -2703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -420.66668701171875, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -2333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -2052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -1069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -1067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -1069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -359.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -335.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -335.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -79.66667175292969, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.9258675078864353, "bbox": [349.66668701171875, -47, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.9726107220549683, "bbox": [349.66668701171875, -15.666666984558105, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0.6866666603088379, "bbox": [375.66668701171875, -15.666666984558105, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 9, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 9.541666984558105, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 42.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 67, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 67.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 100.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -91.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 125, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 125.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 158.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -37.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 183, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 183.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 216.33334350585938, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, 16.65625, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 217, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 217, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 217, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 217.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 250.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, 70.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 275, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 275.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 308.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, 124.65625, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 357, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 357.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 390.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, 178.65625, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 415, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 415.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 448.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, 232.65625, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 473, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 473.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 506.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, 286.65625, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 531, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 531.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 565, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, 374.65625, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, 374.65625, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 2560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 1374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 2578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 3497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 3497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 3515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 3515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 3497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 3515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 3516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 3497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 3515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 3515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 3497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 3515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 3515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 3531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 3531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 3547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 3583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 3583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 3585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 3617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 3617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 3619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 3651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 3651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 3653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 3667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 3725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 3762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 3762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 3762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 3780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 3780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 3780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 3798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 3798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 3798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 3816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 3816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 3816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 3834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -4119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 3834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 3833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-37-0.json b/demonstrations/ieckqwf/extra_element_properties/page-37-0.json new file mode 100644 index 0000000000000000000000000000000000000000..5c41d43eb3302b073b178d43845339051959e7bf --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-37-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -420.66668701171875, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -420.66668701171875, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -412.66668701171875, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -359.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -335.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -335.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -335.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -1689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -1673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -1655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -1637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -1601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -1585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -1567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -1549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -1513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -1497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -1479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -1461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -1425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -1409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -1391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -1373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -1337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -1321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -1303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -1285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -79.66667175292969, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -1267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -1266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -1251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -47.66666793823242, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.9258675078864353, "bbox": [349.66668701171875, -47, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -1233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.9726107220549683, "bbox": [349.66668701171875, -15.666666984558105, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0.6866666603088379, "bbox": [375.66668701171875, -15.666666984558105, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 0.3181818181818182, "bbox": [381.66668701171875, -15, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 0.6739130434782609, "bbox": [381.66668701171875, -15, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 9, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 9, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 5.5416669845581055, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 9.541666984558105, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 42.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 43, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 43, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 67, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 67, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 63.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 67.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 100.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 101, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 101, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 125, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 125, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 121.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 125.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 158.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 159, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 159, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 183, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 183, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 179.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 183.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 216.33334350585938, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 217, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 217, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 217, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 217, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 217, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 213.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 217.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 250.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 251, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 251, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 275, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 275, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 271.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 275.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 308.3333435058594, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 309, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 309, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 357, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 357, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 353.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 357.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 390.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 391, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 391, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 415, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 415, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 411.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 415.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 448.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 449, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 449, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 473, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 473, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 469.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 473.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 506.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 507, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 507, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 531, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 531, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 527.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 531.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 565, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -625.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -625.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 1560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 374.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-42-0.json b/demonstrations/ieckqwf/extra_element_properties/page-42-0.json new file mode 100644 index 0000000000000000000000000000000000000000..7c041b2985516d786a66e3dda9ecc4694bf55a2d --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-42-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -520.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -520.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -520.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -520.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -520.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -520.6666870117188, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -4111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -2703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -520.6666870117188, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -512.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -512.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -512.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -2333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -2333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -2052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -1782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -1510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -2052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -1069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -1069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -1067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -1069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -459.66668701171875, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -435.66668701171875, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -435.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -435.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -435.66668701171875, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -435.66668701171875, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -179.6666717529297, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -147.6666717529297, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -147.6666717529297, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -147.6666717529297, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.7681388012618297, "bbox": [349.66668701171875, -147, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.7977855388934796, "bbox": [349.66668701171875, -115.66667175292969, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0, "bbox": [48, -199.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0, "bbox": [48, -199.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "ce45de3f-64f5-458c": {"visibility": 0, "bbox": [48, -199.34375, 238.5, 17], "clickable": false, "set_of_marks": false}, "88ea41e3-d5f6-4d7f": {"visibility": 0, "bbox": [48, -199.34375, 238.5, 17], "clickable": false, "set_of_marks": false}, "13158e00-e482-43c7": {"visibility": 0, "bbox": [286.5, -199.34375, 594.140625, 17], "clickable": false, "set_of_marks": false}, "7ce0a6c8-2d10-4328": {"visibility": 0, "bbox": [48, -181.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "1e7a1345-d503-47f5": {"visibility": 0, "bbox": [48, -181.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "ced9b056-943c-4d3c": {"visibility": 0, "bbox": [48, -181.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "bf41a1fb-86ed-47e7": {"visibility": 0, "bbox": [48, -181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "fa1f6f9d-f96d-4162": {"visibility": 0, "bbox": [48, -181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "eee8ae26-c754-41d4": {"visibility": 0, "bbox": [48, -181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 0, "bbox": [48, -145.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 0, "bbox": [48, -145.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "6e483ca8-fa68-4731": {"visibility": 0, "bbox": [48, -145.34375, 247.078125, 17], "clickable": false, "set_of_marks": false}, "f665eb1c-418c-46e2": {"visibility": 0, "bbox": [48, -145.34375, 247.078125, 17], "clickable": false, "set_of_marks": false}, "4b6bcea6-2209-4951": {"visibility": 0, "bbox": [295.078125, -145.34375, 614.5, 17], "clickable": false, "set_of_marks": false}, "a552b5c9-7645-4086": {"visibility": 0, "bbox": [48, -127.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "c30a812e-5f9c-4d83": {"visibility": 0, "bbox": [48, -127.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "04640465-4061-4edd": {"visibility": 0, "bbox": [48, -127.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "525fa878-50ba-4dc0": {"visibility": 0, "bbox": [48, -127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ae12b31b-0aac-4f3b": {"visibility": 0, "bbox": [48, -127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "30565224-05bc-42b7": {"visibility": 0, "bbox": [48, -127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 0.3333333432674408, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -91.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 1, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 1, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 1, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 1, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 25, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 25, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 25, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 21.541667938232422, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 21.541667938232422, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 25.541667938232422, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -55.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 58.333335876464844, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -37.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 59, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 59, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 59, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 59, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 83, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 83, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 83, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 79.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 79.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 83.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 116.33333587646484, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, 16.65625, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 117, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 117, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 117, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 117, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 117, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 117, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 117, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 113.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 113.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 117.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, 52.65625, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 150.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, 70.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 151, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 151, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 151, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 151, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 175, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 175, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 175, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 171.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 171.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 175.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, 106.65625, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 208.33334350585938, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, 124.65625, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 209, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 209, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 209, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 209, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 257, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 257, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 257, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 253.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 253.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 257.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, 160.65625, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 290.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, 178.65625, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 291, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 291, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 291, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 291, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 315, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 315, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 315, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 311.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 311.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 315.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, 214.65625, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 348.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, 232.65625, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 349, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 349, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 349, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 349, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 373, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 373, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 373, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 369.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 369.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 373.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, 268.65625, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 406.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, 286.65625, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 407, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 407, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 407, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 407, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 431, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 431, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 431, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 427.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 427.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 431.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, 322.65625, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 465, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0.45649781201795453, "bbox": [349.66668701171875, 504.3333435058594, 768, 871.125], "clickable": false, "set_of_marks": 0}, "6fc7583c-68c2-4c67": {"visibility": 1, "bbox": [349.66668701171875, 504.3333435058594, 380, 253.33334350585938], "clickable": false, "set_of_marks": true}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 2560.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 1, "bbox": [737.6666870117188, 504.3333435058594, 380, 380], "clickable": false, "set_of_marks": true}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 2578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 3497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 3497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 3500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 3515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 3515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 3497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 3500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 3515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 3516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 3497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 3500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 3515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 3515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 3497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 3500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 3515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 3515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 3515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 3531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 3531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 3531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 3547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 3565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 3583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 3583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 3585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 3599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 3617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 3617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 3619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 3633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 3651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 3651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 3653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 3667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 3725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 3762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 3762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 3762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 3762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 3780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 3780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 3780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 3780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 3798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 3798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 3798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 3798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 3816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 3816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 3816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 3816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 3834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -4119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 3834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 3833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -4119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-44-0.json b/demonstrations/ieckqwf/extra_element_properties/page-44-0.json new file mode 100644 index 0000000000000000000000000000000000000000..c76f00182b2cb3450b19f0d46d7984ca984d5d28 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-44-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -720.6666870117188, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -712.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -712.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -712.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -659.6666870117188, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -635.6666870117188, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -635.6666870117188, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -635.6666870117188, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -635.6666870117188, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -635.6666870117188, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -1689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -1673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -1655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -1637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -1601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -1585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -1567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -1549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -1513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -1497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -1479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -1461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -1425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -1409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -1391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -1373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -1337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -1321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -1303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -1285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -379.66668701171875, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -1267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -1266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -1251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -347.66668701171875, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -347.66668701171875, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -347.66668701171875, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.4526813880126183, "bbox": [349.66668701171875, -347, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -1233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.44813516256692526, "bbox": [349.66668701171875, -315.66668701171875, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0, "bbox": [48, -1199.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0, "bbox": [48, -1199.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "ce45de3f-64f5-458c": {"visibility": 0, "bbox": [48, -1199.34375, 238.5, 17], "clickable": false, "set_of_marks": false}, "88ea41e3-d5f6-4d7f": {"visibility": 0, "bbox": [48, -1199.34375, 238.5, 17], "clickable": false, "set_of_marks": false}, "13158e00-e482-43c7": {"visibility": 0, "bbox": [286.5, -1199.34375, 594.140625, 17], "clickable": false, "set_of_marks": false}, "7ce0a6c8-2d10-4328": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "1e7a1345-d503-47f5": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "ced9b056-943c-4d3c": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "bf41a1fb-86ed-47e7": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "fa1f6f9d-f96d-4162": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "eee8ae26-c754-41d4": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 0, "bbox": [48, -1145.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 0, "bbox": [48, -1145.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "6e483ca8-fa68-4731": {"visibility": 0, "bbox": [48, -1145.34375, 247.078125, 17], "clickable": false, "set_of_marks": false}, "f665eb1c-418c-46e2": {"visibility": 0, "bbox": [48, -1145.34375, 247.078125, 17], "clickable": false, "set_of_marks": false}, "4b6bcea6-2209-4951": {"visibility": 0, "bbox": [295.078125, -1145.34375, 614.5, 17], "clickable": false, "set_of_marks": false}, "a552b5c9-7645-4086": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "c30a812e-5f9c-4d83": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "04640465-4061-4edd": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "525fa878-50ba-4dc0": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ae12b31b-0aac-4f3b": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "30565224-05bc-42b7": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 0, "bbox": [48, -1091.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 0, "bbox": [48, -1091.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "386a027c-99f9-41b2": {"visibility": 0, "bbox": [48, -1091.34375, 148.421875, 17], "clickable": false, "set_of_marks": false}, "d2cc40af-1dd9-46ec": {"visibility": 0, "bbox": [48, -1091.34375, 148.421875, 17], "clickable": false, "set_of_marks": false}, "46d5b867-8704-441b": {"visibility": 0, "bbox": [196.421875, -1091.34375, 456.28125, 17], "clickable": false, "set_of_marks": false}, "def7faae-818b-4309": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "55e27820-0e69-4e12": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "bf05b0f3-e5d1-4187": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "1ee20641-c2c9-4a45": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1659752e-68dc-4a9b": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "22a3d0a6-f68b-497a": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 0, "bbox": [48, -1037.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 0, "bbox": [48, -1037.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "000d8eb3-bc2c-47d1": {"visibility": 0, "bbox": [48, -1037.34375, 168.40625, 17], "clickable": false, "set_of_marks": false}, "a31a5b00-3f1d-4906": {"visibility": 0, "bbox": [48, -1037.34375, 168.40625, 17], "clickable": false, "set_of_marks": false}, "53a26a0f-4ff1-47b3": {"visibility": 0, "bbox": [216.40625, -1037.34375, 555.640625, 17], "clickable": false, "set_of_marks": false}, "9386c533-36fe-4083": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "59ae81a5-9daf-4e61": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "1b840274-2d28-4b6a": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "d10e282e-1958-4f96": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "b25a8e82-12c5-4f9d": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "bf77f859-60c5-4721": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 0, "bbox": [48, -983.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 0, "bbox": [48, -983.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "87525086-f477-4a32": {"visibility": 0, "bbox": [48, -983.34375, 149.5, 17], "clickable": false, "set_of_marks": false}, "8a910f2a-bfa0-4494": {"visibility": 0, "bbox": [48, -983.34375, 149.5, 17], "clickable": false, "set_of_marks": false}, "834b664a-62ef-4ff3": {"visibility": 0, "bbox": [197.5, -983.34375, 392.421875, 17], "clickable": false, "set_of_marks": false}, "700b2beb-a2bd-4ad9": {"visibility": 0, "bbox": [48, -965.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "a304557f-a5df-43c4": {"visibility": 0, "bbox": [48, -965.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "37f12dad-5d33-4857": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "26948cba-71e9-44a5": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "54f58512-1745-416a": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "69f4b68b-ed9c-4613": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 0.006666641235351562, "bbox": [375.66668701171875, -49.66666793823242, 742, 50], "clickable": false, "set_of_marks": true}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 0, "bbox": [48, -929.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "55d732f3-dfbf-4430": {"visibility": 0, "bbox": [48, -929.34375, 368.015625, 17], "clickable": false, "set_of_marks": false}, "dc8b9dd3-d402-4580": {"visibility": 0, "bbox": [48, -929.34375, 368.015625, 17], "clickable": false, "set_of_marks": false}, "82d88286-a87b-4103": {"visibility": 0, "bbox": [416.015625, -929.34375, 579.703125, 17], "clickable": false, "set_of_marks": false}, "72bc6539-7808-42ea": {"visibility": 0, "bbox": [48, -911.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "93a100c8-fb8c-43ca": {"visibility": 0, "bbox": [48, -911.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "3d936f1d-a568-42c3": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "f833002f-f527-4aed": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "5cd1cec3-63f7-4bb5": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "71836839-1725-463e": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 8.333333969116211, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 9, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 9, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 9, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 9, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 57, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 57, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 57, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 53.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 53.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 57.54166793823242, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 90.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 91, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 91, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 91, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 91, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 115, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 115, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 115, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 111.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 111.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 115.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 148.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 149, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 149, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 149, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 149, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 173, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 173, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 173, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 169.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 169.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 173.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 206.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 207, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 207, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 207, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 207, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 231, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 231, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 231, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 227.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 227.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 231.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 265, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0.6860859882268797, "bbox": [349.66668701171875, 304.3333435058594, 768, 871.125], "clickable": false, "set_of_marks": 0}, "6fc7583c-68c2-4c67": {"visibility": 1, "bbox": [349.66668701171875, 304.3333435058594, 380, 253.33334350585938], "clickable": false, "set_of_marks": true}, "f432101d-a660-45f3": {"visibility": 0.6214608186523788, "bbox": [349.66668701171875, 565.6666870117188, 360.79168701171875, 541.1979370117188], "clickable": false, "set_of_marks": true}, "8fdc3dc8-45f0-406d": {"visibility": 1, "bbox": [737.6666870117188, 304.3333435058594, 380, 380], "clickable": false, "set_of_marks": true}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-45-0.json b/demonstrations/ieckqwf/extra_element_properties/page-45-0.json new file mode 100644 index 0000000000000000000000000000000000000000..c76f00182b2cb3450b19f0d46d7984ca984d5d28 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-45-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -720.6666870117188, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5111, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3703, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -720.6666870117188, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -712.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -712.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -712.6666870117188, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3333, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3333, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3052.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2782.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2510.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3052.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2069, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2069, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2067.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2069, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1958.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1958.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1955.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1955.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1954.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1955.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -659.6666870117188, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -635.6666870117188, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1937.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1937.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1823.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1823.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1822.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -635.6666870117188, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -635.6666870117188, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -635.6666870117188, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -635.6666870117188, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "323c736f-d631-435a": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "03ad161a-44a1-4905": {"visibility": 0, "bbox": [8, -1791.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "9c7be7cc-0dd0-4522": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 506], "clickable": false, "set_of_marks": false}, "ac182ce0-1577-439c": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "8558afe9-c0d2-411e": {"visibility": 0, "bbox": [8, -1773.34375, 1264, 50], "clickable": false, "set_of_marks": false}, "06f9f96c-ff49-420a": {"visibility": 0, "bbox": [8, -1773.34375, 14, 16], "clickable": false, "set_of_marks": false}, "d8b27842-14d9-45a7": {"visibility": 0, "bbox": [8.5, -1773.34375, 13, 16], "clickable": false, "set_of_marks": false}, "bcf43bb7-33c1-4fc1": {"visibility": 0, "bbox": [8, -1741.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fe7b0910-2cc5-4f44": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "370e6816-b4f3-441e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a73f94e4-2be1-468e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 440], "clickable": false, "set_of_marks": false}, "a296e17a-3fbf-4fbe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "40223ff2-ec67-44bb": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "45a2b5e0-6e0f-4609": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "ec685cad-2276-4dfe": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "b46f8877-710e-4581": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c3a6512d-dbb1-404e": {"visibility": 0, "bbox": [8, -1707.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "56bb96c0-9d6f-439e": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "caac51c4-cf29-4be9": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "ed315a3b-3fbb-4535": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "12a3f3bd-35fd-48e4": {"visibility": 0, "bbox": [8, -1689.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "ef7e2444-275e-41cb": {"visibility": 0, "bbox": [8, -1689.34375, 16, 16], "clickable": false, "set_of_marks": false}, "1a80d0e3-e2e4-4443": {"visibility": 0, "bbox": [8, -1673.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a48a9f2d-2e92-431a": {"visibility": 0, "bbox": [8, -1655.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "127e909d-96b9-4103": {"visibility": 0, "bbox": [8, -1637.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "fec27fa8-aef4-42a9": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "a917b887-1bea-4203": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "d62b89c4-22f1-4177": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "9fdafbad-19d2-4ad2": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "676aea97-b445-4e7e": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "afb00160-bf5d-4cee": {"visibility": 0, "bbox": [8, -1619.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "0bda2a5c-95d2-426f": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "fefe87b1-9278-4e85": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "2bca0f26-f911-4e14": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "62996fea-cc04-4c37": {"visibility": 0, "bbox": [8, -1601.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d0f59419-2518-4654": {"visibility": 0, "bbox": [8, -1601.34375, 16, 16], "clickable": false, "set_of_marks": false}, "5e70e550-40d9-4557": {"visibility": 0, "bbox": [8, -1585.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c6588d87-4279-4789": {"visibility": 0, "bbox": [8, -1567.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f2aedb-ea0b-42ce": {"visibility": 0, "bbox": [8, -1549.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "781a4dea-b71f-4339": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "9ab0924f-002a-4131": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "41332a3e-8183-42b7": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "fb5bd943-9d4b-498b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "91c48008-66f6-4822": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "7fc3a830-7aea-4b6b": {"visibility": 0, "bbox": [8, -1531.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "c69d470c-b20e-43c0": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "89a25add-4f94-4257": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "95219df4-5558-4819": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "5683a5bd-85e2-4b20": {"visibility": 0, "bbox": [8, -1513.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "4b8a4caa-fa92-4797": {"visibility": 0, "bbox": [8, -1513.34375, 16, 16], "clickable": false, "set_of_marks": false}, "2c56cac0-24b7-4552": {"visibility": 0, "bbox": [8, -1497.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "4ddbc830-f8c6-4938": {"visibility": 0, "bbox": [8, -1479.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "35380cbf-159b-4c1f": {"visibility": 0, "bbox": [8, -1461.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "3cf6dcc3-2dca-4390": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "bf09bc69-cf90-4c54": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "f7f10518-f6a2-40ab": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "773ad79f-ae38-49d6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "c289791c-7f08-4dd6": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "44b18b34-feac-4e3a": {"visibility": 0, "bbox": [8, -1443.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "846721d4-3cf2-428c": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "20a09b68-f784-477e": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "43cca39e-0022-4fc0": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "892f29c6-6401-4700": {"visibility": 0, "bbox": [8, -1425.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "1fef1718-b08f-4905": {"visibility": 0, "bbox": [8, -1425.34375, 16, 16], "clickable": false, "set_of_marks": false}, "9e4f1485-534c-4283": {"visibility": 0, "bbox": [8, -1409.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "b5b4164a-f4c1-45d4": {"visibility": 0, "bbox": [8, -1391.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5a6b1ec7-5ede-4c66": {"visibility": 0, "bbox": [8, -1373.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5456479d-7e77-4ec9": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": true, "set_of_marks": false}, "039eefbc-512d-4f3b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "64bd20ee-4420-43c3": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "1db606b7-036d-431d": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 88], "clickable": false, "set_of_marks": false}, "30f04103-6371-48f2": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "bb8889c9-609c-456b": {"visibility": 0, "bbox": [8, -1355.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "32542a4a-51b0-4ad2": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 70], "clickable": false, "set_of_marks": false}, "af0080d4-ffa5-4cb9": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4181bffb-648b-4373": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "116e6b00-d660-4879": {"visibility": 0, "bbox": [8, -1337.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "d454e062-474a-4f3d": {"visibility": 0, "bbox": [8, -1337.34375, 16, 16], "clickable": false, "set_of_marks": false}, "208023bb-e533-4054": {"visibility": 0, "bbox": [8, -1321.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "5999ad85-9f25-4c7e": {"visibility": 0, "bbox": [8, -1303.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "d6d5cffd-7197-40c6": {"visibility": 0, "bbox": [8, -1285.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "a34ebdd8-4688-48df": {"visibility": 0.5654729253193324, "bbox": [349.66668701171875, -379.66668701171875, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "4bac0e14-1da6-4aa6": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "262690b6-c5ce-4cce": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "5d65b1cc-92a6-4e49": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 34], "clickable": false, "set_of_marks": false}, "3d35c129-9293-4201": {"visibility": 0, "bbox": [8, -1267.34375, 1264, 16], "clickable": false, "set_of_marks": false}, "41d62912-c7c8-421a": {"visibility": 0, "bbox": [8, -1267.34375, 20, 16], "clickable": false, "set_of_marks": false}, "d05a1854-6f39-424d": {"visibility": 0, "bbox": [11, -1266.34375, 14, 14], "clickable": false, "set_of_marks": false}, "411509c0-5b02-4dd4": {"visibility": 0, "bbox": [8, -1251.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "275d56b2-513c-4c48": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -347.66668701171875, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -347.66668701171875, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.5922035289290111, "bbox": [349.66668701171875, -347.66668701171875, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 0.4526813880126183, "bbox": [349.66668701171875, -347, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 0, "bbox": [8, -1233.34375, 408.265625, 17], "clickable": false, "set_of_marks": false}, "6cffd73b-fbf4-4c5c": {"visibility": 0.44813516256692526, "bbox": [349.66668701171875, -315.66668701171875, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 0, "bbox": [48, -1199.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1199.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 0, "bbox": [48, -1199.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "ce45de3f-64f5-458c": {"visibility": 0, "bbox": [48, -1199.34375, 238.5, 17], "clickable": false, "set_of_marks": false}, "88ea41e3-d5f6-4d7f": {"visibility": 0, "bbox": [48, -1199.34375, 238.5, 17], "clickable": false, "set_of_marks": false}, "13158e00-e482-43c7": {"visibility": 0, "bbox": [286.5, -1199.34375, 594.140625, 17], "clickable": false, "set_of_marks": false}, "7ce0a6c8-2d10-4328": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "1e7a1345-d503-47f5": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "ced9b056-943c-4d3c": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "bf41a1fb-86ed-47e7": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "fa1f6f9d-f96d-4162": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "eee8ae26-c754-41d4": {"visibility": 0, "bbox": [48, -1181.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 0, "bbox": [48, -1145.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1145.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 0, "bbox": [48, -1145.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "6e483ca8-fa68-4731": {"visibility": 0, "bbox": [48, -1145.34375, 247.078125, 17], "clickable": false, "set_of_marks": false}, "f665eb1c-418c-46e2": {"visibility": 0, "bbox": [48, -1145.34375, 247.078125, 17], "clickable": false, "set_of_marks": false}, "4b6bcea6-2209-4951": {"visibility": 0, "bbox": [295.078125, -1145.34375, 614.5, 17], "clickable": false, "set_of_marks": false}, "a552b5c9-7645-4086": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "c30a812e-5f9c-4d83": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "04640465-4061-4edd": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "525fa878-50ba-4dc0": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ae12b31b-0aac-4f3b": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "30565224-05bc-42b7": {"visibility": 0, "bbox": [48, -1127.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 0, "bbox": [48, -1091.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1091.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 0, "bbox": [48, -1091.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "386a027c-99f9-41b2": {"visibility": 0, "bbox": [48, -1091.34375, 148.421875, 17], "clickable": false, "set_of_marks": false}, "d2cc40af-1dd9-46ec": {"visibility": 0, "bbox": [48, -1091.34375, 148.421875, 17], "clickable": false, "set_of_marks": false}, "46d5b867-8704-441b": {"visibility": 0, "bbox": [196.421875, -1091.34375, 456.28125, 17], "clickable": false, "set_of_marks": false}, "def7faae-818b-4309": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "55e27820-0e69-4e12": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "bf05b0f3-e5d1-4187": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "1ee20641-c2c9-4a45": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1659752e-68dc-4a9b": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "22a3d0a6-f68b-497a": {"visibility": 0, "bbox": [48, -1073.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 0, "bbox": [48, -1037.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1037.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 0, "bbox": [48, -1037.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "000d8eb3-bc2c-47d1": {"visibility": 0, "bbox": [48, -1037.34375, 168.40625, 17], "clickable": false, "set_of_marks": false}, "a31a5b00-3f1d-4906": {"visibility": 0, "bbox": [48, -1037.34375, 168.40625, 17], "clickable": false, "set_of_marks": false}, "53a26a0f-4ff1-47b3": {"visibility": 0, "bbox": [216.40625, -1037.34375, 555.640625, 17], "clickable": false, "set_of_marks": false}, "9386c533-36fe-4083": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "59ae81a5-9daf-4e61": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "1b840274-2d28-4b6a": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "d10e282e-1958-4f96": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "b25a8e82-12c5-4f9d": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "bf77f859-60c5-4721": {"visibility": 0, "bbox": [48, -1019.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 0, "bbox": [48, -983.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -983.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 0, "bbox": [48, -983.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "87525086-f477-4a32": {"visibility": 0, "bbox": [48, -983.34375, 149.5, 17], "clickable": false, "set_of_marks": false}, "8a910f2a-bfa0-4494": {"visibility": 0, "bbox": [48, -983.34375, 149.5, 17], "clickable": false, "set_of_marks": false}, "834b664a-62ef-4ff3": {"visibility": 0, "bbox": [197.5, -983.34375, 392.421875, 17], "clickable": false, "set_of_marks": false}, "700b2beb-a2bd-4ad9": {"visibility": 0, "bbox": [48, -965.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "a304557f-a5df-43c4": {"visibility": 0, "bbox": [48, -965.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "37f12dad-5d33-4857": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "26948cba-71e9-44a5": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "54f58512-1745-416a": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "69f4b68b-ed9c-4613": {"visibility": 0, "bbox": [48, -965.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 0.006666641235351562, "bbox": [375.66668701171875, -49.66666793823242, 742, 50], "clickable": false, "set_of_marks": true}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -929.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 0, "bbox": [48, -929.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "55d732f3-dfbf-4430": {"visibility": 0, "bbox": [48, -929.34375, 368.015625, 17], "clickable": false, "set_of_marks": false}, "dc8b9dd3-d402-4580": {"visibility": 0, "bbox": [48, -929.34375, 368.015625, 17], "clickable": false, "set_of_marks": false}, "82d88286-a87b-4103": {"visibility": 0, "bbox": [416.015625, -929.34375, 579.703125, 17], "clickable": false, "set_of_marks": false}, "72bc6539-7808-42ea": {"visibility": 0, "bbox": [48, -911.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "93a100c8-fb8c-43ca": {"visibility": 0, "bbox": [48, -911.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "3d936f1d-a568-42c3": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "f833002f-f527-4aed": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "5cd1cec3-63f7-4bb5": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "71836839-1725-463e": {"visibility": 0, "bbox": [48, -911.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 1, "bbox": [375.66668701171875, 8.333333969116211, 742, 74], "clickable": false, "set_of_marks": 0}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -875.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 1, "bbox": [381.66668701171875, 9, 735.3646240234375, 70], "clickable": false, "set_of_marks": true}, "7ea6e7e4-3b61-4e18": {"visibility": 1, "bbox": [381.66668701171875, 9, 257.3020935058594, 22], "clickable": false, "set_of_marks": true}, "225694be-9fb5-4421": {"visibility": 1, "bbox": [381.66668701171875, 9, 257.3020935058594, 22], "clickable": false, "set_of_marks": 0}, "8e45cc94-1950-4a9c": {"visibility": 1, "bbox": [381.66668701171875, 9, 735.3646240234375, 46], "clickable": false, "set_of_marks": true}, "e8f6cbd2-1544-4545": {"visibility": 1, "bbox": [381.66668701171875, 57, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "f190d90a-a1d5-4cfc": {"visibility": 1, "bbox": [381.66668701171875, 57, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "4194bb90-118e-4a5a": {"visibility": 1, "bbox": [385.66668701171875, 57, 16, 22], "clickable": true, "set_of_marks": true}, "2619d1c2-adf6-4682": {"visibility": 1, "bbox": [385.66668701171875, 53.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "5cc907b3-5010-4eca": {"visibility": 1, "bbox": [385.66668701171875, 53.54166793823242, 16, 24], "clickable": false, "set_of_marks": 0}, "e5a23b4c-50a9-4b65": {"visibility": 1, "bbox": [385.66668701171875, 57.54166793823242, 16, 16], "clickable": false, "set_of_marks": true}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 1, "bbox": [375.66668701171875, 90.33333587646484, 742, 50], "clickable": false, "set_of_marks": 0}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -821.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 1, "bbox": [381.66668701171875, 91, 688.1146240234375, 46], "clickable": false, "set_of_marks": true}, "a308bf34-a183-4858": {"visibility": 1, "bbox": [381.66668701171875, 91, 172.7291717529297, 22], "clickable": false, "set_of_marks": true}, "2e73e85b-ea9c-44a7": {"visibility": 1, "bbox": [381.66668701171875, 91, 172.7291717529297, 22], "clickable": false, "set_of_marks": 0}, "eb7212c5-24af-4055": {"visibility": 1, "bbox": [381.66668701171875, 91, 688.1146240234375, 46], "clickable": false, "set_of_marks": 0}, "147b6219-5edd-48bb": {"visibility": 1, "bbox": [457.6875, 115, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "116d5fe3-1a03-475a": {"visibility": 1, "bbox": [457.6875, 115, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0cb8fea0-59b9-471d": {"visibility": 1, "bbox": [461.6875, 115, 16, 22], "clickable": true, "set_of_marks": true}, "0c549d5d-7194-4927": {"visibility": 1, "bbox": [461.6875, 111.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "c223124f-5e5a-4068": {"visibility": 1, "bbox": [461.6875, 111.54167175292969, 16, 24], "clickable": false, "set_of_marks": 0}, "c44ad642-bf7f-4c9d": {"visibility": 1, "bbox": [461.6875, 115.54167175292969, 16, 16], "clickable": false, "set_of_marks": true}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 1, "bbox": [375.66668701171875, 148.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -767.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 1, "bbox": [381.66668701171875, 149, 689.21875, 46], "clickable": false, "set_of_marks": true}, "e95e6237-5174-4bbc": {"visibility": 1, "bbox": [381.66668701171875, 149, 176.14584350585938, 22], "clickable": false, "set_of_marks": true}, "c3e0f0b2-c02f-437d": {"visibility": 1, "bbox": [381.66668701171875, 149, 176.14584350585938, 22], "clickable": false, "set_of_marks": 0}, "9b033c7c-beab-40e3": {"visibility": 1, "bbox": [381.66668701171875, 149, 689.21875, 46], "clickable": false, "set_of_marks": 0}, "7b69e0ef-cd41-4e44": {"visibility": 1, "bbox": [776.0208740234375, 173, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "af274418-9d9a-4391": {"visibility": 1, "bbox": [776.0208740234375, 173, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "f135bd82-7322-4bee": {"visibility": 1, "bbox": [780.0208740234375, 173, 16, 22], "clickable": true, "set_of_marks": true}, "4a344f00-0347-467c": {"visibility": 1, "bbox": [780.0208740234375, 169.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "ad704739-a984-489c": {"visibility": 1, "bbox": [780.0208740234375, 169.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "7572012a-e89a-4b59": {"visibility": 1, "bbox": [780.0208740234375, 173.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 1, "bbox": [375.66668701171875, 206.33334350585938, 742, 50], "clickable": false, "set_of_marks": 0}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -713.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 1, "bbox": [381.66668701171875, 207, 709.0729370117188, 46], "clickable": false, "set_of_marks": true}, "932b021b-6a97-422f": {"visibility": 1, "bbox": [381.66668701171875, 207, 103.14583587646484, 22], "clickable": false, "set_of_marks": true}, "6e344c53-ab99-4a3e": {"visibility": 1, "bbox": [381.66668701171875, 207, 103.14583587646484, 22], "clickable": false, "set_of_marks": 0}, "c13f4f01-082c-42dc": {"visibility": 1, "bbox": [381.66668701171875, 207, 709.0729370117188, 46], "clickable": false, "set_of_marks": 0}, "0c7f39b2-d7f0-4d06": {"visibility": 1, "bbox": [536.8541870117188, 231, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "bf9d23cb-ffe8-42a8": {"visibility": 1, "bbox": [536.8541870117188, 231, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "0c5d0d86-9405-414a": {"visibility": 1, "bbox": [540.8541870117188, 231, 16, 22], "clickable": true, "set_of_marks": true}, "4b0a7571-d1a1-4b2f": {"visibility": 1, "bbox": [540.8541870117188, 227.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "bd6ae1fd-313a-4fd2": {"visibility": 1, "bbox": [540.8541870117188, 227.5416717529297, 16, 24], "clickable": false, "set_of_marks": 0}, "1befafbc-1ff1-44fa": {"visibility": 1, "bbox": [540.8541870117188, 231.5416717529297, 16, 16], "clickable": false, "set_of_marks": true}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -677.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 1, "bbox": [349.66668701171875, 265, 729.3333740234375, 22], "clickable": false, "set_of_marks": true}, "b17cbd73-1346-4cd3": {"visibility": 0.6860859882268797, "bbox": [349.66668701171875, 304.3333435058594, 768, 871.125], "clickable": false, "set_of_marks": 0}, "6fc7583c-68c2-4c67": {"visibility": 1, "bbox": [349.66668701171875, 304.3333435058594, 380, 253.33334350585938], "clickable": false, "set_of_marks": true}, "f432101d-a660-45f3": {"visibility": 0.6214608186523788, "bbox": [349.66668701171875, 565.6666870117188, 360.79168701171875, 541.1979370117188], "clickable": false, "set_of_marks": true}, "8fdc3dc8-45f0-406d": {"visibility": 1, "bbox": [737.6666870117188, 304.3333435058594, 380, 380], "clickable": false, "set_of_marks": true}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1578.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2497.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2497.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2500.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2515.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2515.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2497.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2500.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2515.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2516.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2497.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2500.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2515.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2515.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2497.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2500.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2515.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2515.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2515.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2531.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2531.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2531.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2583.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2583.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2585.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2617.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2617.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2619.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2651.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2651.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2653.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2667.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2725.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2762.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2762.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2780.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2780.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2798.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2798.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2816.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2816.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2816.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2834.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5119, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2834.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2833.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5119, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-7-0.json b/demonstrations/ieckqwf/extra_element_properties/page-7-0.json new file mode 100644 index 0000000000000000000000000000000000000000..905a4b935151acff46fbcce4ffc4095df1451e4e --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-7-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -5129, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -3721, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -120.66667175292969, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -3351, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -3351, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -3351, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -3351, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -3351, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -3070.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -2800.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -2528.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -3070.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -2800.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -2528.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -3070.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -2800.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -2528.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -3070.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -2087, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -2087, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -2087, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -2085.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -2087, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -1976.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -1976.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -1973.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -1973.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -1972.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -1973.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -59.66666793823242, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -35.66666793823242, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -1955.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -1955.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -1955.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -1955.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -1955.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -1955.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -1955.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -1859.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -1841.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -1841.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -1840.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -1827.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -1809.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -35.66666793823242, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": true}, "323c736f-d631-435a": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": 0}, "03ad161a-44a1-4905": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": 0}, "9c7be7cc-0dd0-4522": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 768, 152], "clickable": false, "set_of_marks": true}, "ac182ce0-1577-439c": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 768, 24], "clickable": false, "set_of_marks": true}, "8558afe9-c0d2-411e": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 128.34375, 24], "clickable": false, "set_of_marks": 0}, "06f9f96c-ff49-420a": {"visibility": 1, "bbox": [349.66668701171875, 48.333335876464844, 14, 16], "clickable": false, "set_of_marks": 0}, "d8b27842-14d9-45a7": {"visibility": 1, "bbox": [350.16668701171875, 48.333335876464844, 13, 16], "clickable": false, "set_of_marks": true}, "bcf43bb7-33c1-4fc1": {"visibility": 1, "bbox": [371.66668701171875, 44.333335876464844, 106.34375, 24], "clickable": false, "set_of_marks": true}, "fe7b0910-2cc5-4f44": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": true}, "370e6816-b4f3-441e": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -1725.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -1725.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -1725.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -1725.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "a73f94e4-2be1-468e": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "a296e17a-3fbf-4fbe": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "40223ff2-ec67-44bb": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "45a2b5e0-6e0f-4609": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "ec685cad-2276-4dfe": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "b46f8877-710e-4581": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "c3a6512d-dbb1-404e": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "56bb96c0-9d6f-439e": {"visibility": 1, "bbox": [357.66668701171875, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "caac51c4-cf29-4be9": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 97.83333587646484, 16], "clickable": false, "set_of_marks": 0}, "ed315a3b-3fbb-4535": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "12a3f3bd-35fd-48e4": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "ef7e2444-275e-41cb": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "1a80d0e3-e2e4-4443": {"visibility": 1, "bbox": [377.66668701171875, 112.33333587646484, 77.83333587646484, 16], "clickable": false, "set_of_marks": true}, "a48a9f2d-2e92-431a": {"visibility": 1, "bbox": [459.5, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "127e909d-96b9-4103": {"visibility": 1, "bbox": [467.40625, 112.33333587646484, 4.208333492279053, 16], "clickable": false, "set_of_marks": true}, "fec27fa8-aef4-42a9": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "a917b887-1bea-4203": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "d62b89c4-22f1-4177": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "9fdafbad-19d2-4ad2": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "676aea97-b445-4e7e": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "afb00160-bf5d-4cee": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "0bda2a5c-95d2-426f": {"visibility": 1, "bbox": [551.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "fefe87b1-9278-4e85": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 121.27083587646484, 16], "clickable": false, "set_of_marks": 0}, "2bca0f26-f911-4e14": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "62996fea-cc04-4c37": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "d0f59419-2518-4654": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "5e70e550-40d9-4557": {"visibility": 1, "bbox": [571.6666870117188, 112.33333587646484, 101.27083587646484, 16], "clickable": false, "set_of_marks": true}, "c6588d87-4279-4789": {"visibility": 1, "bbox": [676.9375, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "08f2aedb-ea0b-42ce": {"visibility": 1, "bbox": [684.84375, 112.33333587646484, 6.927083492279053, 16], "clickable": false, "set_of_marks": true}, "781a4dea-b71f-4339": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "9ab0924f-002a-4131": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "41332a3e-8183-42b7": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "fb5bd943-9d4b-498b": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "91c48008-66f6-4822": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "7fc3a830-7aea-4b6b": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "c69d470c-b20e-43c0": {"visibility": 1, "bbox": [745.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "89a25add-4f94-4257": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 137.3125, 16], "clickable": false, "set_of_marks": 0}, "95219df4-5558-4819": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "5683a5bd-85e2-4b20": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "4b8a4caa-fa92-4797": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "2c56cac0-24b7-4552": {"visibility": 1, "bbox": [765.6666870117188, 112.33333587646484, 117.3125, 16], "clickable": false, "set_of_marks": true}, "4ddbc830-f8c6-4938": {"visibility": 1, "bbox": [886.9791870117188, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "35380cbf-159b-4c1f": {"visibility": 1, "bbox": [894.8854370117188, 112.33333587646484, 7.1354169845581055, 16], "clickable": false, "set_of_marks": true}, "3cf6dcc3-2dca-4390": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "bf09bc69-cf90-4c54": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "f7f10518-f6a2-40ab": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "773ad79f-ae38-49d6": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "c289791c-7f08-4dd6": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "44b18b34-feac-4e3a": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "846721d4-3cf2-428c": {"visibility": 1, "bbox": [939.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "20a09b68-f784-477e": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 66.79167175292969, 16], "clickable": false, "set_of_marks": true}, "43cca39e-0022-4fc0": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "892f29c6-6401-4700": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "1fef1718-b08f-4905": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "9e4f1485-534c-4283": {"visibility": 1, "bbox": [959.6666870117188, 112.33333587646484, 46.79166793823242, 16], "clickable": false, "set_of_marks": true}, "b5b4164a-f4c1-45d4": {"visibility": 1, "bbox": [1010.4583740234375, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "5a6b1ec7-5ede-4c66": {"visibility": 1, "bbox": [1018.3646240234375, 112.33333587646484, 7.770833492279053, 16], "clickable": false, "set_of_marks": true}, "5456479d-7e77-4ec9": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": true, "set_of_marks": true}, "039eefbc-512d-4f3b": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": false, "set_of_marks": 0}, "64bd20ee-4420-43c3": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": false, "set_of_marks": 0}, "1db606b7-036d-431d": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 40], "clickable": false, "set_of_marks": true}, "30f04103-6371-48f2": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 16], "clickable": false, "set_of_marks": true}, "bb8889c9-609c-456b": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 16], "clickable": false, "set_of_marks": 0}, "32542a4a-51b0-4ad2": {"visibility": 1, "bbox": [357.66668701171875, 168.33334350585938, 170, 24], "clickable": false, "set_of_marks": true}, "af0080d4-ffa5-4cb9": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 105.0625, 16], "clickable": false, "set_of_marks": 0}, "4181bffb-648b-4373": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "116e6b00-d660-4879": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": 0}, "d454e062-474a-4f3d": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": 0}, "208023bb-e533-4054": {"visibility": 1, "bbox": [377.66668701171875, 172.33334350585938, 85.0625, 16], "clickable": false, "set_of_marks": true}, "5999ad85-9f25-4c7e": {"visibility": 1, "bbox": [466.72918701171875, 168.33334350585938, 3.90625, 24], "clickable": false, "set_of_marks": true}, "d6d5cffd-7197-40c6": {"visibility": 1, "bbox": [474.63543701171875, 172.33334350585938, 7.677083492279053, 16], "clickable": false, "set_of_marks": true}, "a34ebdd8-4688-48df": {"visibility": 0.4273437232155102, "bbox": [349.66668701171875, 220.33334350585938, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 768, 32], "clickable": false, "set_of_marks": true}, "4bac0e14-1da6-4aa6": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 768, 24], "clickable": false, "set_of_marks": true}, "262690b6-c5ce-4cce": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 87.30208587646484, 24], "clickable": false, "set_of_marks": true}, "5d65b1cc-92a6-4e49": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 87.30208587646484, 24], "clickable": false, "set_of_marks": 0}, "3d35c129-9293-4201": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 20, 24], "clickable": false, "set_of_marks": true}, "41d62912-c7c8-421a": {"visibility": 1, "bbox": [349.66668701171875, 223.6666717529297, 20, 16], "clickable": false, "set_of_marks": true}, "d05a1854-6f39-424d": {"visibility": 1, "bbox": [352.66668701171875, 224.6666717529297, 14, 14], "clickable": false, "set_of_marks": true}, "411509c0-5b02-4dd4": {"visibility": 1, "bbox": [377.66668701171875, 220.33334350585938, 59.302085876464844, 24], "clickable": false, "set_of_marks": true}, "275d56b2-513c-4c48": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 1, "bbox": [349.66668701171875, 253, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 1, "bbox": [349.66668701171875, 253, 514.625, 22], "clickable": false, "set_of_marks": true}, "6cffd73b-fbf4-4c5c": {"visibility": 1, "bbox": [349.66668701171875, 284.3333435058594, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 1, "bbox": [375.66668701171875, 284.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -1217.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 1, "bbox": [381.66668701171875, 285, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 1, "bbox": [381.66668701171875, 285, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 1, "bbox": [381.66668701171875, 285, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 1, "bbox": [381.66668701171875, 285, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 309, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 309, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 309, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 305.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 305.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 309.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -1181.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -1181.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 342.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -1163.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 343, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 343, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 343, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 343, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 367, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 367, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 367, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 363.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 363.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 367.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -1127.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -1127.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 400.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -1109.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 401, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 401, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 401, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 401, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 425, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 425, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 425, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 421.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 421.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 425.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -1073.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -1073.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 458.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -1055.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 459, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 459, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 459, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 459, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 483, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 483, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 483, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 479.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 479.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 483.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -1019.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -1019.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 516.3333740234375, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -1001.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 517, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 517, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 517, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 517, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 517, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 517, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 517, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 513.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 513.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 517.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -965.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -965.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 550.3333740234375, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -947.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 551, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 551, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 551, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 551, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 575, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 575, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 575, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 571.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 571.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 575.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -911.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -911.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 0, "bbox": [48, -893.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -893.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 0, "bbox": [48, -893.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "7ea6e7e4-3b61-4e18": {"visibility": 0, "bbox": [48, -893.34375, 213.796875, 17], "clickable": false, "set_of_marks": false}, "225694be-9fb5-4421": {"visibility": 0, "bbox": [48, -893.34375, 213.796875, 17], "clickable": false, "set_of_marks": false}, "8e45cc94-1950-4a9c": {"visibility": 0, "bbox": [261.796875, -893.34375, 968.625, 17], "clickable": false, "set_of_marks": false}, "e8f6cbd2-1544-4545": {"visibility": 0, "bbox": [48, -875.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "f190d90a-a1d5-4cfc": {"visibility": 0, "bbox": [48, -875.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "4194bb90-118e-4a5a": {"visibility": 0, "bbox": [48, -875.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "2619d1c2-adf6-4682": {"visibility": 0, "bbox": [48, -875.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "5cc907b3-5010-4eca": {"visibility": 0, "bbox": [48, -875.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "e5a23b4c-50a9-4b65": {"visibility": 0, "bbox": [48, -875.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -857.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -857.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 0, "bbox": [48, -839.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -839.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 0, "bbox": [48, -839.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "a308bf34-a183-4858": {"visibility": 0, "bbox": [48, -839.34375, 151.078125, 17], "clickable": false, "set_of_marks": false}, "2e73e85b-ea9c-44a7": {"visibility": 0, "bbox": [48, -839.34375, 151.078125, 17], "clickable": false, "set_of_marks": false}, "eb7212c5-24af-4055": {"visibility": 0, "bbox": [199.078125, -839.34375, 482.921875, 17], "clickable": false, "set_of_marks": false}, "147b6219-5edd-48bb": {"visibility": 0, "bbox": [48, -821.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "116d5fe3-1a03-475a": {"visibility": 0, "bbox": [48, -821.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "0cb8fea0-59b9-471d": {"visibility": 0, "bbox": [48, -821.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "0c549d5d-7194-4927": {"visibility": 0, "bbox": [48, -821.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "c223124f-5e5a-4068": {"visibility": 0, "bbox": [48, -821.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "c44ad642-bf7f-4c9d": {"visibility": 0, "bbox": [48, -821.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -803.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -803.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 0, "bbox": [48, -785.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -785.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 0, "bbox": [48, -785.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "e95e6237-5174-4bbc": {"visibility": 0, "bbox": [48, -785.34375, 145.140625, 17], "clickable": false, "set_of_marks": false}, "c3e0f0b2-c02f-437d": {"visibility": 0, "bbox": [48, -785.34375, 145.140625, 17], "clickable": false, "set_of_marks": false}, "9b033c7c-beab-40e3": {"visibility": 0, "bbox": [193.140625, -785.34375, 730.734375, 17], "clickable": false, "set_of_marks": false}, "7b69e0ef-cd41-4e44": {"visibility": 0, "bbox": [48, -767.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "af274418-9d9a-4391": {"visibility": 0, "bbox": [48, -767.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "f135bd82-7322-4bee": {"visibility": 0, "bbox": [48, -767.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "4a344f00-0347-467c": {"visibility": 0, "bbox": [48, -767.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ad704739-a984-489c": {"visibility": 0, "bbox": [48, -767.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "7572012a-e89a-4b59": {"visibility": 0, "bbox": [48, -767.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -749.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -749.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 0, "bbox": [48, -731.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -731.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 0, "bbox": [48, -731.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "932b021b-6a97-422f": {"visibility": 0, "bbox": [48, -731.34375, 91.984375, 17], "clickable": false, "set_of_marks": false}, "6e344c53-ab99-4a3e": {"visibility": 0, "bbox": [48, -731.34375, 91.984375, 17], "clickable": false, "set_of_marks": false}, "c13f4f01-082c-42dc": {"visibility": 0, "bbox": [139.984375, -731.34375, 610.765625, 17], "clickable": false, "set_of_marks": false}, "0c7f39b2-d7f0-4d06": {"visibility": 0, "bbox": [48, -713.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "bf9d23cb-ffe8-42a8": {"visibility": 0, "bbox": [48, -713.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "0c5d0d86-9405-414a": {"visibility": 0, "bbox": [48, -713.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "4b0a7571-d1a1-4b2f": {"visibility": 0, "bbox": [48, -713.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "bd6ae1fd-313a-4fd2": {"visibility": 0, "bbox": [48, -713.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1befafbc-1ff1-44fa": {"visibility": 0, "bbox": [48, -713.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -695.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -695.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 0, "bbox": [8, -661.34375, 582.4375, 17], "clickable": false, "set_of_marks": false}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -643.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -643.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, 1542.65625, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, 356.65625, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, 1560.65625, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 2479.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 2479.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 2482.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 2482.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 2482.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 2482.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 2497.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 2497.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 2497.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 2479.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 2482.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 2482.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 2482.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 2482.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 2497.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 2497.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 2498.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 2479.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 2482.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 2482.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 2482.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 2482.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 2497.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 2497.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 2497.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 2479.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 2482.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 2482.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 2482.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 2482.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 2497.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 2497.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 2497.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 2513.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 2513.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 2513.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 2529.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 2547.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 2565.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 2565.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 2567.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 2581.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 2581.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 2599.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 2599.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 2601.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 2615.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 2615.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 2633.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 2633.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 2635.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 2649.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 2707.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 2744.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 2744.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 2744.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 2744.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 2762.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 2762.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 2762.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 2762.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 2780.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 2780.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 2780.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 2780.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 2798.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 2798.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 2798.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 2798.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 2816.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -5137, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 2816.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 2815.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -5137, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -5137, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -5137, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -5137, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -5137, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/extra_element_properties/page-9-0.json b/demonstrations/ieckqwf/extra_element_properties/page-9-0.json new file mode 100644 index 0000000000000000000000000000000000000000..b3654ccf15df4faa0c701066acfc59232aa4d1d3 --- /dev/null +++ b/demonstrations/ieckqwf/extra_element_properties/page-9-0.json @@ -0,0 +1 @@ +{"4eb7fe1c-c20b-4e9d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eef1c1e5-01ac-4f87": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "aa20f67b-9623-4ae9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f6a7ffe0-7d5b-410b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "940c62de-542f-4976": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c9f309ef-87ed-4d44": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bbb4446d-1146-4127": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "566a0b1d-7edb-490c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "22e52b0e-06c3-4db0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "06db0b81-c41c-45cb": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "956306f3-5825-46dc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "59d6e6ad-6525-4b7d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f2a4b88f-9ac1-4a1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2c6bce7e-9402-43ea": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c22395fa-4a20-4a49": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "dc42c2c3-e086-4e17": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a632bdba-bb64-4bd5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "478a16ee-7a95-4049": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ee87511b-935c-464b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "96dec634-80b6-4cf6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4ab3c532-8427-43cf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3f2987bc-0f45-4f73": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e215e71e-4f99-470a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4e5cb84f-55f2-4643": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "c400aabc-f4f1-426d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "26b373fa-6a0d-4247": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7b934a12-4667-4617": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6e4c5d62-dd5c-48d8": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "16138d69-dffe-404d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1e505996-bef5-4ba6": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e91b95f-ee28-46f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3ef24df4-2fa6-4e26": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2ac790dc-d748-49ff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "372b8767-0c08-43cc": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ce569a4f-dd1d-48ce": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "666462e5-1af6-4b88": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7aba86eb-0b07-4e1d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a074ca6a-8cef-4084": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "cad6c5d2-ab77-4aff": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "eea34fdd-b9d1-4429": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9014d687-ad5d-4f86": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75a3d182-d291-4a54": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d1e3160e-3311-47e0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "78dcf573-82d5-412a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "36abd075-9eac-427e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea24bee2-ab86-4021": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "343e61e5-3371-441d": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "d9d56c53-4e56-456e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e413edcd-ecc1-47d9": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6eaaeb76-db9e-4690": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b4dfa195-9ace-4574": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "183cb809-fb98-4487": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3a3d06f0-914a-4407": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5144ecdb-306b-4691": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "2bf39fd0-6834-4775": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "75175126-9d0e-4c97": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "773861a0-de95-487b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7f26368d-87cf-4e93": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "803eff4d-5005-4b1f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7317ca39-9205-4f7e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b5993cb2-f883-4002": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "47eb4d8d-3650-4cb3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "1425721f-22c8-4403": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5bbeed9b-73f8-41d5": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5287d2ff-2d12-4129": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ed9229f3-0bfe-4dc0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ac2a9fc7-e52e-495a": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "a3e2d7ed-a1c6-47f7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "40076f69-3904-4b1b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "4532c193-3875-41cd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ff27f266-dc2e-4151": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "ddbf4ca9-ff11-49fd": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "391f09cb-5e0a-4e5d": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "5a04f383-796a-4127": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "996d6026-4ca0-47d3": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 1263.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "af0a8880-ad2e-472e": {"visibility": 0.3904550619555219, "bbox": [0, -120.66667175292969, 220, 2310.125], "clickable": false, "set_of_marks": 0}, "caf22395-5bde-4e91": {"visibility": 0, "bbox": [8, -7234, 1264, 1632], "clickable": false, "set_of_marks": false}, "88e8b01b-41f2-4c04": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": true}, "c74194a8-4f3b-4d9e": {"visibility": 1, "bbox": [0, 0, 220, 601.3333740234375], "clickable": false, "set_of_marks": 0}, "037acfc1-735d-4416": {"visibility": 1, "bbox": [0, 16, 220, 352.66668701171875], "clickable": false, "set_of_marks": true}, "70dd8b20-52e5-4471": {"visibility": 1, "bbox": [0, 16, 220, 24], "clickable": false, "set_of_marks": 0}, "07ad311f-84fd-4083": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": true, "set_of_marks": 0}, "363b8839-6c9e-4311": {"visibility": 1, "bbox": [0, 16, 172.59375, 24], "clickable": false, "set_of_marks": 0}, "273b3cf4-d185-4f9c": {"visibility": 1, "bbox": [24, 16, 140.59375, 24], "clickable": false, "set_of_marks": 0}, "85c3c4ac-f5e1-45fe": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": true}, "485bff6c-71bc-45d2": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "5d905c1c-3feb-46f9": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "1e010617-c7a5-4b09": {"visibility": 1, "bbox": [24, 16, 24, 24], "clickable": false, "set_of_marks": 0}, "d6b50cad-c9db-4061": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 13.37847900390625, 13.359375], "clickable": false, "set_of_marks": true}, "98559116-7ffa-42ae": {"visibility": 1, "bbox": [34.48059844970703, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "781f99a4-37e6-49ed": {"visibility": 1, "bbox": [34.48059844970703, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "eb67453d-003a-4925": {"visibility": 1, "bbox": [34.48059844970703, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "fc947796-58cf-4064": {"visibility": 1, "bbox": [29.3203125, 26.461469650268555, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "f2bbe1b5-fa2b-4a1a": {"visibility": 1, "bbox": [29.3203125, 31.621749877929688, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "e174c16a-f30a-464c": {"visibility": 1, "bbox": [29.3203125, 21.3203125, 3.0579376220703125, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "b73dc5c9-a1c4-425a": {"visibility": 1, "bbox": [39.64085388183594, 26.461469650268555, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "01a76176-e6ac-4a65": {"visibility": 1, "bbox": [39.64085388183594, 31.621749877929688, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "955d49ba-418d-4785": {"visibility": 1, "bbox": [39.64085388183594, 21.3203125, 3.0579402446746826, 3.0579376220703125], "clickable": false, "set_of_marks": 0}, "7d44eabd-3872-49d2": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": true}, "44544999-c82e-4380": {"visibility": 1, "bbox": [56, 16, 108.59375, 24], "clickable": false, "set_of_marks": 0}, "17ec846e-d70c-4e39": {"visibility": 1, "bbox": [0, 64, 220, 39.333335876464844], "clickable": false, "set_of_marks": 0}, "c7ec3b2b-6921-41ff": {"visibility": 1, "bbox": [0, 66, 220, 37.333335876464844], "clickable": false, "set_of_marks": 0}, "2bcca082-6e74-485f": {"visibility": 1, "bbox": [24, 66, 172, 37.333335876464844], "clickable": false, "set_of_marks": true}, "0f76cf94-c0ba-497b": {"visibility": 1, "bbox": [40.66666793823242, 74.66667175292969, 83.90625, 20], "clickable": false, "set_of_marks": true}, "f4aae869-e399-41e3": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 52.85416793823242, 20], "clickable": false, "set_of_marks": true}, "4cffa24d-ddb1-475b": {"visibility": 1, "bbox": [134.4791717529297, 74.66667175292969, 30.854167938232422, 20], "clickable": false, "set_of_marks": true}, "fd642430-0eab-4fc7": {"visibility": 1, "bbox": [167.33334350585938, 74.66667175292969, 20, 20], "clickable": false, "set_of_marks": true}, "609d0ff9-865e-4a70": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 184], "clickable": false, "set_of_marks": true}, "dca1a8d4-dbec-4033": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "6dbb2102-0400-4a3a": {"visibility": 1, "bbox": [0, 119.33333587646484, 220, 40], "clickable": false, "set_of_marks": 0}, "66a479f2-7478-4cd3": {"visibility": 1, "bbox": [8, 119.33333587646484, 204, 40], "clickable": true, "set_of_marks": true}, "fcbbdce8-325e-4fb1": {"visibility": 1, "bbox": [24, 131.33334350585938, 71.98958587646484, 16], "clickable": false, "set_of_marks": true}, "fb79d6d7-c99c-4796": {"visibility": 1, "bbox": [24, 131.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "30953a4d-72f2-4804": {"visibility": 1, "bbox": [25, 131.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "0f26e889-69fa-4d88": {"visibility": 1, "bbox": [48, 131.33334350585938, 47.989585876464844, 16], "clickable": false, "set_of_marks": true}, "fe9e82de-1de2-4fdb": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8b8a58c1-a320-418a": {"visibility": 1, "bbox": [0, 167.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "7d06a2ac-b8e8-4cbb": {"visibility": 1, "bbox": [8, 167.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "b5c03e9f-955b-42fc": {"visibility": 1, "bbox": [24, 179.33334350585938, 93.15625, 16], "clickable": false, "set_of_marks": true}, "2e5d73ba-14b5-43fd": {"visibility": 1, "bbox": [24, 179.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "c06eb8e5-5013-469c": {"visibility": 1, "bbox": [26, 179.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "8d529989-4bb0-42a8": {"visibility": 1, "bbox": [48, 179.33334350585938, 69.15625, 16], "clickable": false, "set_of_marks": true}, "04a6a87f-c546-4244": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "8f677685-65d3-4ce4": {"visibility": 1, "bbox": [0, 215.33334350585938, 220, 40], "clickable": false, "set_of_marks": 0}, "2d4471a3-e86d-40f1": {"visibility": 1, "bbox": [8, 215.33334350585938, 204, 40], "clickable": true, "set_of_marks": true}, "2b145999-af7f-4d6b": {"visibility": 1, "bbox": [24, 227.33334350585938, 117.25, 16], "clickable": false, "set_of_marks": 0}, "ba293bf4-fbce-49c8": {"visibility": 1, "bbox": [24, 227.33334350585938, 20, 16], "clickable": false, "set_of_marks": 0}, "aa421cb2-8d1b-4b12": {"visibility": 1, "bbox": [25, 227.33334350585938, 18, 16], "clickable": false, "set_of_marks": true}, "feaebc43-b9ae-4507": {"visibility": 1, "bbox": [48, 227.33334350585938, 93.25, 16], "clickable": false, "set_of_marks": true}, "8b5ab04f-8e77-4759": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "f5677759-44b1-4b8d": {"visibility": 1, "bbox": [0, 263.3333435058594, 220, 40], "clickable": false, "set_of_marks": 0}, "df7bc167-4731-4949": {"visibility": 1, "bbox": [8, 263.3333435058594, 204, 40], "clickable": true, "set_of_marks": true}, "7dc4ffc4-461b-479a": {"visibility": 1, "bbox": [24, 275.3333435058594, 93.04167175292969, 16], "clickable": false, "set_of_marks": true}, "410cf753-380b-409b": {"visibility": 1, "bbox": [24, 275.3333435058594, 20, 16], "clickable": false, "set_of_marks": true}, "e8471ca5-9b2e-41fd": {"visibility": 1, "bbox": [26, 275.3333435058594, 15, 16], "clickable": false, "set_of_marks": true}, "517d0488-9b8c-4bcf": {"visibility": 1, "bbox": [48, 275.3333435058594, 69.04167175292969, 16], "clickable": false, "set_of_marks": true}, "ed75583c-8e71-470c": {"visibility": 0, "bbox": [8, -5826, 1264, 0], "clickable": false, "set_of_marks": false}, "f287a34f-2ab5-42a3": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 224.6666717529297], "clickable": false, "set_of_marks": true}, "36c6155e-33ec-4206": {"visibility": 1, "bbox": [0, 368.66668701171875, 220, 108], "clickable": false, "set_of_marks": true}, "82dbb0b8-f945-4646": {"visibility": 1, "bbox": [16, 368.66668701171875, 188, 24], "clickable": false, "set_of_marks": true}, "a5615a98-483d-4172": {"visibility": 1, "bbox": [16, 371.3333435058594, 47.708335876464844, 19.33333396911621], "clickable": false, "set_of_marks": true}, "65824a19-eeb1-4814": {"visibility": 1, "bbox": [16, 392.66668701171875, 188, 40], "clickable": false, "set_of_marks": true}, "72afbc79-73e0-4b8a": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": true}, "107dd14d-95a1-4d26": {"visibility": 1, "bbox": [8, 436.66668701171875, 196, 32], "clickable": false, "set_of_marks": 0}, "81e2f3c3-bdac-4883": {"visibility": 1, "bbox": [8, 436.66668701171875, 93.75, 32], "clickable": false, "set_of_marks": true}, "9a1f25dd-6492-4b96": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": true}, "944d7fbc-75f9-48b5": {"visibility": 1, "bbox": [16, 445.66668701171875, 77.75, 14], "clickable": false, "set_of_marks": 0}, "877f7490-65a8-4c3f": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": true, "set_of_marks": true}, "7533b88f-9836-4637": {"visibility": 1, "bbox": [0, 476.66668701171875, 220, 60], "clickable": false, "set_of_marks": 0}, "ab76ccbe-7e21-4069": {"visibility": 1, "bbox": [8, 484.66668701171875, 204, 44], "clickable": false, "set_of_marks": true}, "89f24d4d-1369-445d": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": true}, "871146b1-38a9-458e": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "b673d2d2-5c66-4299": {"visibility": 1, "bbox": [16, 488.66668701171875, 36, 36], "clickable": false, "set_of_marks": 0}, "7a7d59b2-2d19-405b": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": true}, "75a1808d-a9da-45a1": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "79f5a38b-828f-46a5": {"visibility": 1, "bbox": [60, 496.66668701171875, 144, 20], "clickable": false, "set_of_marks": 0}, "45c2f266-2ce1-429f": {"visibility": 1, "bbox": [0, 544.6666870117188, 220, 40.66666793823242], "clickable": false, "set_of_marks": true}, "8d1e8f4b-23fd-4bdb": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": true}, "8f079f1d-0c10-425b": {"visibility": 1, "bbox": [8, 553.3333740234375, 108.61458587646484, 32], "clickable": false, "set_of_marks": 0}, "9906a892-7523-4974": {"visibility": 1, "bbox": [16, 562.3333740234375, 92.61458587646484, 14], "clickable": false, "set_of_marks": 0}, "d95c6b78-2660-4427": {"visibility": 1, "bbox": [16, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "cbb09141-5b2d-4c2f": {"visibility": 1, "bbox": [19.5, 562.3333740234375, 9.625, 14], "clickable": false, "set_of_marks": true}, "bdc60858-c6f6-4a30": {"visibility": 1, "bbox": [37.5, 562.3333740234375, 71.11458587646484, 14], "clickable": false, "set_of_marks": true}, "12da51e3-4dae-48f9": {"visibility": 1, "bbox": [120.61458587646484, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "640434f3-ec49-4095": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": true}, "16beb941-aec5-47e5": {"visibility": 1, "bbox": [127.86458587646484, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "be80859b-ec7a-40d4": {"visibility": 1, "bbox": [129.61459350585938, 563.6480712890625, 13.99994945526123, 11.370565414428711], "clickable": false, "set_of_marks": true}, "71eb3e93-56ed-4427": {"visibility": 1, "bbox": [156.61459350585938, 553.3333740234375, 32, 32], "clickable": true, "set_of_marks": true}, "6af7dae7-33b1-4ecd": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "0662b221-0089-4f70": {"visibility": 1, "bbox": [163.86459350585938, 562.3333740234375, 17.5, 14], "clickable": false, "set_of_marks": 0}, "a94a51ab-b369-4d68": {"visibility": 1, "bbox": [164.57553100585938, 563.2083740234375, 16.07806396484375, 12.249959945678711], "clickable": false, "set_of_marks": true}, "596dd1c5-50b7-4dab": {"visibility": 0.3904550619555219, "bbox": [220, -120.66667175292969, 1043.3333740234375, 2310.125], "clickable": false, "set_of_marks": 0}, "99a62f96-6364-402f": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "2edf84d2-6e79-4ec2": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "196f9843-9577-4c93": {"visibility": 0.39455410355951664, "bbox": [220, -112.66667175292969, 1027.3333740234375, 2286.125], "clickable": false, "set_of_marks": 0}, "0293ec9c-ad75-43fd": {"visibility": 1, "bbox": [236, 0, 995.3333740234375, 53], "clickable": false, "set_of_marks": true}, "a63dc173-70a9-49f9": {"visibility": 1, "bbox": [236, 8, 995.3333740234375, 36], "clickable": false, "set_of_marks": true}, "23d6f05c-5d63-45d8": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "179a06dd-504d-4b06": {"visibility": 1, "bbox": [236, 16, 256.1770935058594, 20], "clickable": false, "set_of_marks": 0}, "0ac63989-0778-4fa9": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "741f42e6-f416-4dcc": {"visibility": 1, "bbox": [236, 16, 194.55209350585938, 20], "clickable": false, "set_of_marks": 0}, "37a8138b-46cb-4d6a": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": true}, "0d401d8d-35bf-42b9": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "b5e3c7bf-3dc3-438c": {"visibility": 1, "bbox": [236, 16, 20, 20], "clickable": false, "set_of_marks": 0}, "165705fe-7dd8-419d": {"visibility": 1, "bbox": [260, 16, 170.55209350585938, 20], "clickable": false, "set_of_marks": true}, "7be5960a-2b93-4606": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": true}, "98d3a4ea-7514-4162": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "76eee3ed-e0ef-405a": {"visibility": 1, "bbox": [446.5520935058594, 16, 45.625, 20], "clickable": false, "set_of_marks": 0}, "02278f83-3033-4d80": {"visibility": 1, "bbox": [446.5520935058594, 16, 15.3125, 20], "clickable": false, "set_of_marks": true}, "cc557e54-847d-48a4": {"visibility": 1, "bbox": [446.5520935058594, 19.291667938232422, 15.3125, 12.25], "clickable": false, "set_of_marks": true}, "35ec20dd-8991-4228": {"visibility": 1, "bbox": [448.0833435058594, 20.057292938232422, 12.25, 10.71875], "clickable": false, "set_of_marks": true}, "933faa84-fc31-4c0d": {"visibility": 1, "bbox": [465.8645935058594, 16, 26.3125, 20], "clickable": false, "set_of_marks": true}, "7270f23e-e6eb-4cc8": {"visibility": 0, "bbox": [8, -5456, 1264, 1282], "clickable": false, "set_of_marks": false}, "2879ae9b-7dff-4e72": {"visibility": 0, "bbox": [8, -5456, 1264, 1264], "clickable": true, "set_of_marks": false}, "6c476f38-747f-497b": {"visibility": 0, "bbox": [8, -5456, 1264, 1264], "clickable": false, "set_of_marks": false}, "9112cdfa-979d-4c1e": {"visibility": 0, "bbox": [8, -5456, 1264, 1264], "clickable": false, "set_of_marks": false}, "ba924cbf-5843-45dd": {"visibility": 0, "bbox": [8, -5456, 1264, 1264], "clickable": false, "set_of_marks": false}, "465913e6-d19c-4cf3": {"visibility": 0, "bbox": [288.203125, -5175.796875, 704.609375, 703.59375], "clickable": false, "set_of_marks": false}, "9137c0eb-cbc5-41cf": {"visibility": 0, "bbox": [559.96875, -4905.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "784f54bf-bfc2-4257": {"visibility": 0, "bbox": [559.96875, -4633.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "c2d4d4f2-ecab-4f9f": {"visibility": 0, "bbox": [559.96875, -5175.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "62ee5dbd-4eb9-4be7": {"visibility": 0, "bbox": [288.203125, -4905.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "4cebdd7e-d23f-4fc2": {"visibility": 0, "bbox": [288.203125, -4633.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "f2c6d941-e197-43bf": {"visibility": 0, "bbox": [288.203125, -5175.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "29eea344-4984-42c6": {"visibility": 0, "bbox": [831.75, -4905.03125, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "77a496c2-ff81-47d9": {"visibility": 0, "bbox": [831.75, -4633.265625, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "6de79056-a982-4d45": {"visibility": 0, "bbox": [831.75, -5175.796875, 161.0625, 161.0625], "clickable": false, "set_of_marks": false}, "70748759-129a-477d": {"visibility": 0, "bbox": [8, -4192, 1264, 18], "clickable": true, "set_of_marks": false}, "37545084-0b67-4ba8": {"visibility": 0, "bbox": [8, -4192, 1264, 18], "clickable": false, "set_of_marks": false}, "a1c6babd-7180-44fb": {"visibility": 0, "bbox": [8, -4192, 20, 16], "clickable": false, "set_of_marks": false}, "ce68e2f4-44b9-456b": {"visibility": 0, "bbox": [11, -4190.5, 13, 13], "clickable": false, "set_of_marks": false}, "4ed74d4f-9317-4d14": {"visibility": 0, "bbox": [28, -4192, 30.21875, 17], "clickable": false, "set_of_marks": false}, "f2fdfe3b-4ebe-40da": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": true}, "a8bde6f0-c791-4ab9": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "0ef317a0-d30f-4c6d": {"visibility": 1, "bbox": [560.4791870117188, 8, 448, 36], "clickable": false, "set_of_marks": 0}, "46f82faf-6fcc-49ad": {"visibility": 1, "bbox": [568.4791870117188, 16, 432, 20], "clickable": false, "set_of_marks": true}, "8e9cc5d9-90c1-4be2": {"visibility": 1, "bbox": [1076.78125, 10, 154.55209350585938, 32], "clickable": false, "set_of_marks": 0}, "b10a1eb6-94cb-4c83": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "0e62c4a8-8c77-4621": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "3d4913c7-07cd-438d": {"visibility": 1, "bbox": [1076.78125, 10, 32, 32], "clickable": false, "set_of_marks": 0}, "4853c5c0-270b-4dff": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "594fcdcb-921b-4690": {"visibility": 1, "bbox": [1084.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "ed4d6c71-3fe2-461c": {"visibility": 1, "bbox": [1086.65625, 24.6875, 11.375, 2.625], "clickable": false, "set_of_marks": 0}, "51dc86ba-fd31-4ae5": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": true}, "3beaf557-e299-4a12": {"visibility": 1, "bbox": [1112.78125, 10, 118.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "a81690e3-843a-41ca": {"visibility": 1, "bbox": [1112.78125, 10, 32, 32], "clickable": false, "set_of_marks": true}, "7ab4c9a3-b067-4190": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": true}, "3ecc6a74-596b-4593": {"visibility": 1, "bbox": [1091.729248046875, 44.395835876464844, 74.10417175292969, 24], "clickable": false, "set_of_marks": 0}, "50316098-65c7-454f": {"visibility": 1, "bbox": [1099.729248046875, 48.395835876464844, 58.10416793823242, 16], "clickable": false, "set_of_marks": true}, "7747ec14-5a7a-4350": {"visibility": 1, "bbox": [1099.729248046875, 47.72916793823242, 58.10416793823242, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "0daeeef2-340d-47fc": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "50a7e4a4-a01e-4408": {"visibility": 1, "bbox": [1120.03125, 19, 17.5, 14], "clickable": false, "set_of_marks": 0}, "f65c115f-cca5-4d4a": {"visibility": 1, "bbox": [1120.513916015625, 19.588232040405273, 16.534832000732422, 12.822509765625], "clickable": false, "set_of_marks": true}, "c044a2c0-9e6d-4de6": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": true}, "240fb9a2-41c6-49ee": {"visibility": 1, "bbox": [1152.78125, 10, 78.55208587646484, 32], "clickable": false, "set_of_marks": 0}, "b1857b8a-6997-447e": {"visibility": 1, "bbox": [1160.78125, 19, 62.552085876464844, 14], "clickable": false, "set_of_marks": true}, "f57dff21-e45a-44c0": {"visibility": 1, "bbox": [1160.78125, 19, 17.5, 14], "clickable": false, "set_of_marks": true}, "55404e7e-5ece-44fc": {"visibility": 1, "bbox": [1162.53125, 19.875, 14, 12.25], "clickable": false, "set_of_marks": true}, "9678c18d-b01c-46f9": {"visibility": 1, "bbox": [1182.28125, 19, 41.052085876464844, 14], "clickable": false, "set_of_marks": true}, "f76757d3-e80a-43e2": {"visibility": 0, "bbox": [8, -4081.34375, 1264, 21], "clickable": false, "set_of_marks": false}, "172a1441-54ac-45ee": {"visibility": 0, "bbox": [8, -4081.34375, 68.234375, 21], "clickable": false, "set_of_marks": false}, "729e5a61-6968-4bdf": {"visibility": 0, "bbox": [16, -4078.34375, 52.234375, 15], "clickable": false, "set_of_marks": false}, "4bad35dc-7396-45bb": {"visibility": 0, "bbox": [16, -4078.015625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "f32398a2-2d26-4678": {"visibility": 0, "bbox": [17.65625, -4077.1875, 13.34375, 11.671875], "clickable": false, "set_of_marks": false}, "5c11555f-5530-4b8e": {"visibility": 0, "bbox": [32.65625, -4078.34375, 35.578125, 15], "clickable": false, "set_of_marks": false}, "59b3bca9-16ea-42a2": {"visibility": 0.4039182759585782, "bbox": [220, -59.66666793823242, 1027.3333740234375, 2233.125], "clickable": false, "set_of_marks": 0}, "23a07765-4b6f-4cc3": {"visibility": 0.4325879743420658, "bbox": [349.66668701171875, -35.66666793823242, 768, 2085.125], "clickable": false, "set_of_marks": 0}, "4c9deae6-9633-497f": {"visibility": 0, "bbox": [8, -4060.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "b72ef0a7-2c00-47c6": {"visibility": 0, "bbox": [8, -4060.34375, 1264, 146], "clickable": false, "set_of_marks": false}, "4feb5de0-880e-40fe": {"visibility": 0, "bbox": [8, -4060.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "4d04d67d-345b-4ae3": {"visibility": 0, "bbox": [8, -4060.34375, 1264, 114], "clickable": false, "set_of_marks": false}, "25576f8f-ef67-4ce9": {"visibility": 0, "bbox": [8, -4060.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "cf026042-0851-46ec": {"visibility": 0, "bbox": [8, -4060.34375, 1264, 96], "clickable": false, "set_of_marks": false}, "4644ef69-0b8b-4b26": {"visibility": 0, "bbox": [8, -4060.34375, 96, 96], "clickable": false, "set_of_marks": false}, "552ee758-830c-4ca5": {"visibility": 0, "bbox": [8, -3964.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "94e83aac-1ee3-41b0": {"visibility": 0, "bbox": [8, -3946.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "176914ae-974f-4078": {"visibility": 0, "bbox": [8, -3946.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "fe1e92db-f7d7-4aa2": {"visibility": 0, "bbox": [8, -3946.34375, 1264, 32], "clickable": false, "set_of_marks": false}, "6299928b-7c03-4d22": {"visibility": 0, "bbox": [8, -3946.34375, 1264, 14], "clickable": false, "set_of_marks": false}, "12d64234-c6fe-4b37": {"visibility": 0, "bbox": [8, -3946.34375, 17.5, 14], "clickable": false, "set_of_marks": false}, "521e8902-baf0-4e97": {"visibility": 0, "bbox": [9.75, -3945.46875, 14, 12.25], "clickable": false, "set_of_marks": false}, "0120a5b6-a4b8-42f9": {"visibility": 0, "bbox": [8, -3932.34375, 1264, 18], "clickable": false, "set_of_marks": false}, "e3c58a3b-6130-4e6c": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "c8d363cd-dad7-4343": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "5e7727d2-0cc4-4b4a": {"visibility": 0, "bbox": [8, -3914.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "48aefdf4-5e5f-444b": {"visibility": 0, "bbox": [8, -3914.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "fb1065f0-4be2-4478": {"visibility": 0.4359330634930224, "bbox": [349.66668701171875, -35.66666793823242, 768, 2069.125], "clickable": false, "set_of_marks": 0}, "fcdc638d-d113-4cc8": {"visibility": 0.4393302891933029, "bbox": [349.66668701171875, -35.66666793823242, 768, 2053.125], "clickable": false, "set_of_marks": 0}, "5df3a481-a910-4a30": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": true}, "323c736f-d631-435a": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": 0}, "03ad161a-44a1-4905": {"visibility": 0.4427083134651184, "bbox": [349.66668701171875, -35.66666793823242, 768, 64], "clickable": false, "set_of_marks": 0}, "9c7be7cc-0dd0-4522": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 768, 152], "clickable": false, "set_of_marks": true}, "ac182ce0-1577-439c": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 768, 24], "clickable": false, "set_of_marks": true}, "8558afe9-c0d2-411e": {"visibility": 1, "bbox": [349.66668701171875, 44.333335876464844, 128.34375, 24], "clickable": false, "set_of_marks": 0}, "06f9f96c-ff49-420a": {"visibility": 1, "bbox": [349.66668701171875, 48.333335876464844, 14, 16], "clickable": false, "set_of_marks": 0}, "d8b27842-14d9-45a7": {"visibility": 1, "bbox": [350.16668701171875, 48.333335876464844, 13, 16], "clickable": false, "set_of_marks": true}, "bcf43bb7-33c1-4fc1": {"visibility": 1, "bbox": [371.66668701171875, 44.333335876464844, 106.34375, 24], "clickable": false, "set_of_marks": true}, "fe7b0910-2cc5-4f44": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": true}, "370e6816-b4f3-441e": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "0fbe2b99-558b-426e": {"visibility": 0, "bbox": [8, -3830.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "04aaa56e-a419-4924": {"visibility": 0, "bbox": [8, -3830.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "6223cdd8-eabd-4603": {"visibility": 0, "bbox": [8, -3830.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "700298e9-eb11-458a": {"visibility": 0, "bbox": [8, -3830.34375, 1264, 0], "clickable": false, "set_of_marks": false}, "5fde6a21-a20f-4c16": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "a73f94e4-2be1-468e": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 768, 112], "clickable": false, "set_of_marks": 0}, "a296e17a-3fbf-4fbe": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "40223ff2-ec67-44bb": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "45a2b5e0-6e0f-4609": {"visibility": 1, "bbox": [349.66668701171875, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "ec685cad-2276-4dfe": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "b46f8877-710e-4581": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "c3a6512d-dbb1-404e": {"visibility": 1, "bbox": [357.66668701171875, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "56bb96c0-9d6f-439e": {"visibility": 1, "bbox": [357.66668701171875, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "caac51c4-cf29-4be9": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 97.83333587646484, 16], "clickable": false, "set_of_marks": 0}, "ed315a3b-3fbb-4535": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "12a3f3bd-35fd-48e4": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "ef7e2444-275e-41cb": {"visibility": 1, "bbox": [357.66668701171875, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "1a80d0e3-e2e4-4443": {"visibility": 1, "bbox": [377.66668701171875, 112.33333587646484, 77.83333587646484, 16], "clickable": false, "set_of_marks": true}, "a48a9f2d-2e92-431a": {"visibility": 1, "bbox": [459.5, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "127e909d-96b9-4103": {"visibility": 1, "bbox": [467.40625, 112.33333587646484, 4.208333492279053, 16], "clickable": false, "set_of_marks": true}, "fec27fa8-aef4-42a9": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "a917b887-1bea-4203": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "d62b89c4-22f1-4177": {"visibility": 1, "bbox": [543.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "9fdafbad-19d2-4ad2": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "676aea97-b445-4e7e": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "afb00160-bf5d-4cee": {"visibility": 1, "bbox": [551.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "0bda2a5c-95d2-426f": {"visibility": 1, "bbox": [551.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "fefe87b1-9278-4e85": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 121.27083587646484, 16], "clickable": false, "set_of_marks": 0}, "2bca0f26-f911-4e14": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "62996fea-cc04-4c37": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "d0f59419-2518-4654": {"visibility": 1, "bbox": [551.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "5e70e550-40d9-4557": {"visibility": 1, "bbox": [571.6666870117188, 112.33333587646484, 101.27083587646484, 16], "clickable": false, "set_of_marks": true}, "c6588d87-4279-4789": {"visibility": 1, "bbox": [676.9375, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "08f2aedb-ea0b-42ce": {"visibility": 1, "bbox": [684.84375, 112.33333587646484, 6.927083492279053, 16], "clickable": false, "set_of_marks": true}, "781a4dea-b71f-4339": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "9ab0924f-002a-4131": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "41332a3e-8183-42b7": {"visibility": 1, "bbox": [737.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "fb5bd943-9d4b-498b": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "91c48008-66f6-4822": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "7fc3a830-7aea-4b6b": {"visibility": 1, "bbox": [745.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "c69d470c-b20e-43c0": {"visibility": 1, "bbox": [745.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "89a25add-4f94-4257": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 137.3125, 16], "clickable": false, "set_of_marks": 0}, "95219df4-5558-4819": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "5683a5bd-85e2-4b20": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "4b8a4caa-fa92-4797": {"visibility": 1, "bbox": [745.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "2c56cac0-24b7-4552": {"visibility": 1, "bbox": [765.6666870117188, 112.33333587646484, 117.3125, 16], "clickable": false, "set_of_marks": true}, "4ddbc830-f8c6-4938": {"visibility": 1, "bbox": [886.9791870117188, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "35380cbf-159b-4c1f": {"visibility": 1, "bbox": [894.8854370117188, 112.33333587646484, 7.1354169845581055, 16], "clickable": false, "set_of_marks": true}, "3cf6dcc3-2dca-4390": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": true, "set_of_marks": true}, "bf09bc69-cf90-4c54": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "f7f10518-f6a2-40ab": {"visibility": 1, "bbox": [931.6666870117188, 84.33333587646484, 186, 52], "clickable": false, "set_of_marks": 0}, "773ad79f-ae38-49d6": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 40], "clickable": false, "set_of_marks": true}, "c289791c-7f08-4dd6": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": true}, "44b18b34-feac-4e3a": {"visibility": 1, "bbox": [939.6666870117188, 92.33333587646484, 170, 16], "clickable": false, "set_of_marks": 0}, "846721d4-3cf2-428c": {"visibility": 1, "bbox": [939.6666870117188, 108.33333587646484, 170, 24], "clickable": false, "set_of_marks": true}, "20a09b68-f784-477e": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 66.79167175292969, 16], "clickable": false, "set_of_marks": true}, "43cca39e-0022-4fc0": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": true}, "892f29c6-6401-4700": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "1fef1718-b08f-4905": {"visibility": 1, "bbox": [939.6666870117188, 112.33333587646484, 16, 16], "clickable": false, "set_of_marks": 0}, "9e4f1485-534c-4283": {"visibility": 1, "bbox": [959.6666870117188, 112.33333587646484, 46.79166793823242, 16], "clickable": false, "set_of_marks": true}, "b5b4164a-f4c1-45d4": {"visibility": 1, "bbox": [1010.4583740234375, 108.33333587646484, 3.90625, 24], "clickable": false, "set_of_marks": true}, "5a6b1ec7-5ede-4c66": {"visibility": 1, "bbox": [1018.3646240234375, 112.33333587646484, 7.770833492279053, 16], "clickable": false, "set_of_marks": true}, "5456479d-7e77-4ec9": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": true, "set_of_marks": true}, "039eefbc-512d-4f3b": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": false, "set_of_marks": 0}, "64bd20ee-4420-43c3": {"visibility": 1, "bbox": [349.66668701171875, 144.33334350585938, 186, 52], "clickable": false, "set_of_marks": 0}, "1db606b7-036d-431d": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 40], "clickable": false, "set_of_marks": true}, "30f04103-6371-48f2": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 16], "clickable": false, "set_of_marks": true}, "bb8889c9-609c-456b": {"visibility": 1, "bbox": [357.66668701171875, 152.33334350585938, 170, 16], "clickable": false, "set_of_marks": 0}, "32542a4a-51b0-4ad2": {"visibility": 1, "bbox": [357.66668701171875, 168.33334350585938, 170, 24], "clickable": false, "set_of_marks": true}, "af0080d4-ffa5-4cb9": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 105.0625, 16], "clickable": false, "set_of_marks": 0}, "4181bffb-648b-4373": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": true}, "116e6b00-d660-4879": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": 0}, "d454e062-474a-4f3d": {"visibility": 1, "bbox": [357.66668701171875, 172.33334350585938, 16, 16], "clickable": false, "set_of_marks": 0}, "208023bb-e533-4054": {"visibility": 1, "bbox": [377.66668701171875, 172.33334350585938, 85.0625, 16], "clickable": false, "set_of_marks": true}, "5999ad85-9f25-4c7e": {"visibility": 1, "bbox": [466.72918701171875, 168.33334350585938, 3.90625, 24], "clickable": false, "set_of_marks": true}, "d6d5cffd-7197-40c6": {"visibility": 1, "bbox": [474.63543701171875, 172.33334350585938, 7.677083492279053, 16], "clickable": false, "set_of_marks": true}, "a34ebdd8-4688-48df": {"visibility": 0.4273437232155102, "bbox": [349.66668701171875, 220.33334350585938, 768, 1595.125], "clickable": false, "set_of_marks": 0}, "9b1f0199-999b-4b05": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 768, 32], "clickable": false, "set_of_marks": true}, "4bac0e14-1da6-4aa6": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 768, 24], "clickable": false, "set_of_marks": true}, "262690b6-c5ce-4cce": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 87.30208587646484, 24], "clickable": false, "set_of_marks": true}, "5d65b1cc-92a6-4e49": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 87.30208587646484, 24], "clickable": false, "set_of_marks": 0}, "3d35c129-9293-4201": {"visibility": 1, "bbox": [349.66668701171875, 220.33334350585938, 20, 24], "clickable": false, "set_of_marks": true}, "41d62912-c7c8-421a": {"visibility": 1, "bbox": [349.66668701171875, 223.6666717529297, 20, 16], "clickable": false, "set_of_marks": true}, "d05a1854-6f39-424d": {"visibility": 1, "bbox": [352.66668701171875, 224.6666717529297, 14, 14], "clickable": false, "set_of_marks": true}, "411509c0-5b02-4dd4": {"visibility": 1, "bbox": [377.66668701171875, 220.33334350585938, 59.302085876464844, 24], "clickable": false, "set_of_marks": true}, "275d56b2-513c-4c48": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "4dc82e0e-d5bc-43e4": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "be897aa5-2eb0-41e9": {"visibility": 0.4265353510014875, "bbox": [349.66668701171875, 252.33334350585938, 768, 1523.125], "clickable": false, "set_of_marks": 0}, "847fd6f1-8a2d-4ddc": {"visibility": 1, "bbox": [349.66668701171875, 253, 768, 634], "clickable": false, "set_of_marks": 0}, "60e543e9-3c49-4101": {"visibility": 1, "bbox": [349.66668701171875, 253, 514.625, 22], "clickable": false, "set_of_marks": true}, "6cffd73b-fbf4-4c5c": {"visibility": 1, "bbox": [349.66668701171875, 284.3333435058594, 768, 572], "clickable": false, "set_of_marks": true}, "ce3b4b85-bbd6-451b": {"visibility": 1, "bbox": [375.66668701171875, 284.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "7ad79a7b-177b-4822": {"visibility": 0, "bbox": [48, -3322.34375, 0, 17], "clickable": false, "set_of_marks": false}, "dbb3c333-767a-46f7": {"visibility": 1, "bbox": [381.66668701171875, 285, 708.4896240234375, 46], "clickable": false, "set_of_marks": true}, "ce45de3f-64f5-458c": {"visibility": 1, "bbox": [381.66668701171875, 285, 283.57293701171875, 22], "clickable": false, "set_of_marks": true}, "88ea41e3-d5f6-4d7f": {"visibility": 1, "bbox": [381.66668701171875, 285, 283.57293701171875, 22], "clickable": false, "set_of_marks": 0}, "13158e00-e482-43c7": {"visibility": 1, "bbox": [381.66668701171875, 285, 708.4896240234375, 46], "clickable": false, "set_of_marks": 0}, "7ce0a6c8-2d10-4328": {"visibility": 1, "bbox": [706.6979370117188, 309, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "1e7a1345-d503-47f5": {"visibility": 1, "bbox": [706.6979370117188, 309, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "ced9b056-943c-4d3c": {"visibility": 1, "bbox": [710.6979370117188, 309, 16, 22], "clickable": true, "set_of_marks": true}, "bf41a1fb-86ed-47e7": {"visibility": 1, "bbox": [710.6979370117188, 305.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "fa1f6f9d-f96d-4162": {"visibility": 1, "bbox": [710.6979370117188, 305.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "eee8ae26-c754-41d4": {"visibility": 1, "bbox": [710.6979370117188, 309.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "a6354d3a-2c6e-4608": {"visibility": 0, "bbox": [52, -3286.34375, 0, 17], "clickable": false, "set_of_marks": false}, "649a6079-ca48-4447": {"visibility": 0, "bbox": [52, -3286.34375, 0, 17], "clickable": false, "set_of_marks": false}, "453462b2-ec84-4dc6": {"visibility": 1, "bbox": [375.66668701171875, 342.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "6e26478a-5585-4d10": {"visibility": 0, "bbox": [48, -3268.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9c4e5353-1756-4beb": {"visibility": 1, "bbox": [381.66668701171875, 343, 728.6979370117188, 46], "clickable": false, "set_of_marks": true}, "6e483ca8-fa68-4731": {"visibility": 1, "bbox": [381.66668701171875, 343, 289.28125, 22], "clickable": false, "set_of_marks": true}, "f665eb1c-418c-46e2": {"visibility": 1, "bbox": [381.66668701171875, 343, 289.28125, 22], "clickable": false, "set_of_marks": 0}, "4b6bcea6-2209-4951": {"visibility": 1, "bbox": [381.66668701171875, 343, 728.6979370117188, 46], "clickable": false, "set_of_marks": 0}, "a552b5c9-7645-4086": {"visibility": 1, "bbox": [703.3541870117188, 367, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "c30a812e-5f9c-4d83": {"visibility": 1, "bbox": [703.3541870117188, 367, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "04640465-4061-4edd": {"visibility": 1, "bbox": [707.3541870117188, 367, 16, 22], "clickable": true, "set_of_marks": true}, "525fa878-50ba-4dc0": {"visibility": 1, "bbox": [707.3541870117188, 363.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "ae12b31b-0aac-4f3b": {"visibility": 1, "bbox": [707.3541870117188, 363.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "30565224-05bc-42b7": {"visibility": 1, "bbox": [707.3541870117188, 367.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "ad8f9678-da33-45c8": {"visibility": 0, "bbox": [52, -3232.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d221c4f9-4cc7-4fd1": {"visibility": 0, "bbox": [52, -3232.34375, 0, 17], "clickable": false, "set_of_marks": false}, "2e513126-3ccd-4a93": {"visibility": 1, "bbox": [375.66668701171875, 400.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "1a3c81fd-edb9-426d": {"visibility": 0, "bbox": [48, -3214.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3a901b6b-8823-400f": {"visibility": 1, "bbox": [381.66668701171875, 401, 659.8125, 46], "clickable": false, "set_of_marks": true}, "386a027c-99f9-41b2": {"visibility": 1, "bbox": [381.66668701171875, 401, 173.875, 22], "clickable": false, "set_of_marks": true}, "d2cc40af-1dd9-46ec": {"visibility": 1, "bbox": [381.66668701171875, 401, 173.875, 22], "clickable": false, "set_of_marks": 0}, "46d5b867-8704-441b": {"visibility": 1, "bbox": [381.66668701171875, 401, 659.8125, 46], "clickable": false, "set_of_marks": 0}, "def7faae-818b-4309": {"visibility": 1, "bbox": [457.6875, 425, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "55e27820-0e69-4e12": {"visibility": 1, "bbox": [457.6875, 425, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "bf05b0f3-e5d1-4187": {"visibility": 1, "bbox": [461.6875, 425, 16, 22], "clickable": true, "set_of_marks": true}, "1ee20641-c2c9-4a45": {"visibility": 1, "bbox": [461.6875, 421.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "1659752e-68dc-4a9b": {"visibility": 1, "bbox": [461.6875, 421.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "22a3d0a6-f68b-497a": {"visibility": 1, "bbox": [461.6875, 425.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "6874c4b8-81b6-4ea1": {"visibility": 0, "bbox": [52, -3178.34375, 0, 17], "clickable": false, "set_of_marks": false}, "e7adc3b3-bd07-468c": {"visibility": 0, "bbox": [52, -3178.34375, 0, 17], "clickable": false, "set_of_marks": false}, "3043f974-c032-4a0e": {"visibility": 1, "bbox": [375.66668701171875, 458.3333435058594, 742, 50], "clickable": false, "set_of_marks": 0}, "0c1d4b57-977b-414c": {"visibility": 0, "bbox": [48, -3160.34375, 0, 17], "clickable": false, "set_of_marks": false}, "061afb7a-d917-4247": {"visibility": 1, "bbox": [381.66668701171875, 459, 659.625, 46], "clickable": false, "set_of_marks": true}, "000d8eb3-bc2c-47d1": {"visibility": 1, "bbox": [381.66668701171875, 459, 193.30209350585938, 22], "clickable": false, "set_of_marks": true}, "a31a5b00-3f1d-4906": {"visibility": 1, "bbox": [381.66668701171875, 459, 193.30209350585938, 22], "clickable": false, "set_of_marks": 0}, "53a26a0f-4ff1-47b3": {"visibility": 1, "bbox": [381.66668701171875, 459, 659.625, 46], "clickable": false, "set_of_marks": 0}, "9386c533-36fe-4083": {"visibility": 1, "bbox": [598.15625, 483, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "59ae81a5-9daf-4e61": {"visibility": 1, "bbox": [598.15625, 483, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "1b840274-2d28-4b6a": {"visibility": 1, "bbox": [602.15625, 483, 16, 22], "clickable": true, "set_of_marks": true}, "d10e282e-1958-4f96": {"visibility": 1, "bbox": [602.15625, 479.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "b25a8e82-12c5-4f9d": {"visibility": 1, "bbox": [602.15625, 479.54168701171875, 16, 24], "clickable": false, "set_of_marks": 0}, "bf77f859-60c5-4721": {"visibility": 1, "bbox": [602.15625, 483.54168701171875, 16, 16], "clickable": false, "set_of_marks": true}, "49f4f2e9-a947-4472": {"visibility": 0, "bbox": [52, -3124.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b1395bf8-53fc-4191": {"visibility": 0, "bbox": [52, -3124.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d70ed951-f6f4-42a2": {"visibility": 1, "bbox": [375.66668701171875, 516.3333740234375, 742, 26], "clickable": false, "set_of_marks": 0}, "ed567416-dcc9-4440": {"visibility": 0, "bbox": [48, -3106.34375, 0, 17], "clickable": false, "set_of_marks": false}, "abea0b53-f851-47e6": {"visibility": 1, "bbox": [381.66668701171875, 517, 700.5208740234375, 22], "clickable": false, "set_of_marks": true}, "87525086-f477-4a32": {"visibility": 1, "bbox": [381.66668701171875, 517, 178.2916717529297, 22], "clickable": false, "set_of_marks": true}, "8a910f2a-bfa0-4494": {"visibility": 1, "bbox": [381.66668701171875, 517, 178.2916717529297, 22], "clickable": false, "set_of_marks": 0}, "834b664a-62ef-4ff3": {"visibility": 1, "bbox": [559.9583740234375, 517, 498.8645935058594, 22], "clickable": false, "set_of_marks": true}, "700b2beb-a2bd-4ad9": {"visibility": 1, "bbox": [1058.822998046875, 517, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "a304557f-a5df-43c4": {"visibility": 1, "bbox": [1058.822998046875, 517, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "37f12dad-5d33-4857": {"visibility": 1, "bbox": [1062.822998046875, 517, 16, 22], "clickable": true, "set_of_marks": true}, "26948cba-71e9-44a5": {"visibility": 1, "bbox": [1062.822998046875, 513.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "54f58512-1745-416a": {"visibility": 1, "bbox": [1062.822998046875, 513.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "69f4b68b-ed9c-4613": {"visibility": 1, "bbox": [1062.822998046875, 517.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "5078c7db-8770-480b": {"visibility": 0, "bbox": [52, -3070.34375, 0, 17], "clickable": false, "set_of_marks": false}, "0e9a11d5-4f4e-4121": {"visibility": 0, "bbox": [52, -3070.34375, 0, 17], "clickable": false, "set_of_marks": false}, "d158cbdd-5cb0-4bdf": {"visibility": 1, "bbox": [375.66668701171875, 550.3333740234375, 742, 50], "clickable": false, "set_of_marks": 0}, "00b028b3-e5e8-488c": {"visibility": 0, "bbox": [48, -3052.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5dd4d2a3-0e81-436c": {"visibility": 1, "bbox": [381.66668701171875, 551, 730.4479370117188, 46], "clickable": false, "set_of_marks": true}, "55d732f3-dfbf-4430": {"visibility": 1, "bbox": [381.66668701171875, 551, 441.9583435058594, 22], "clickable": false, "set_of_marks": true}, "dc8b9dd3-d402-4580": {"visibility": 1, "bbox": [381.66668701171875, 551, 441.9583435058594, 22], "clickable": false, "set_of_marks": 0}, "82d88286-a87b-4103": {"visibility": 1, "bbox": [381.66668701171875, 551, 730.4479370117188, 46], "clickable": false, "set_of_marks": 0}, "72bc6539-7808-42ea": {"visibility": 1, "bbox": [816.7916870117188, 575, 23.36458396911621, 22], "clickable": false, "set_of_marks": true}, "93a100c8-fb8c-43ca": {"visibility": 1, "bbox": [816.7916870117188, 575, 23.36458396911621, 22], "clickable": false, "set_of_marks": 0}, "3d936f1d-a568-42c3": {"visibility": 1, "bbox": [820.7916870117188, 575, 16, 22], "clickable": true, "set_of_marks": true}, "f833002f-f527-4aed": {"visibility": 1, "bbox": [820.7916870117188, 571.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "5cd1cec3-63f7-4bb5": {"visibility": 1, "bbox": [820.7916870117188, 571.5416870117188, 16, 24], "clickable": false, "set_of_marks": 0}, "71836839-1725-463e": {"visibility": 1, "bbox": [820.7916870117188, 575.5416870117188, 16, 16], "clickable": false, "set_of_marks": true}, "cdaa4027-148b-4143": {"visibility": 0, "bbox": [52, -3016.34375, 0, 17], "clickable": false, "set_of_marks": false}, "166c2955-c355-4f69": {"visibility": 0, "bbox": [52, -3016.34375, 0, 17], "clickable": false, "set_of_marks": false}, "c0d66170-7079-4f23": {"visibility": 0, "bbox": [48, -2998.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "d588d1fa-099c-4ad1": {"visibility": 0, "bbox": [48, -2998.34375, 0, 17], "clickable": false, "set_of_marks": false}, "f4cd1166-1ed7-4f4c": {"visibility": 0, "bbox": [48, -2998.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "7ea6e7e4-3b61-4e18": {"visibility": 0, "bbox": [48, -2998.34375, 213.796875, 17], "clickable": false, "set_of_marks": false}, "225694be-9fb5-4421": {"visibility": 0, "bbox": [48, -2998.34375, 213.796875, 17], "clickable": false, "set_of_marks": false}, "8e45cc94-1950-4a9c": {"visibility": 0, "bbox": [261.796875, -2998.34375, 968.625, 17], "clickable": false, "set_of_marks": false}, "e8f6cbd2-1544-4545": {"visibility": 0, "bbox": [48, -2980.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "f190d90a-a1d5-4cfc": {"visibility": 0, "bbox": [48, -2980.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "4194bb90-118e-4a5a": {"visibility": 0, "bbox": [48, -2980.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "2619d1c2-adf6-4682": {"visibility": 0, "bbox": [48, -2980.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "5cc907b3-5010-4eca": {"visibility": 0, "bbox": [48, -2980.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "e5a23b4c-50a9-4b65": {"visibility": 0, "bbox": [48, -2980.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "d0fde8ee-9680-49b4": {"visibility": 0, "bbox": [52, -2962.34375, 0, 17], "clickable": false, "set_of_marks": false}, "9db89de0-13f4-4a71": {"visibility": 0, "bbox": [52, -2962.34375, 0, 17], "clickable": false, "set_of_marks": false}, "32d1272f-1b84-4172": {"visibility": 0, "bbox": [48, -2944.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "164b39e3-431c-4d48": {"visibility": 0, "bbox": [48, -2944.34375, 0, 17], "clickable": false, "set_of_marks": false}, "370de633-6605-43ef": {"visibility": 0, "bbox": [48, -2944.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "a308bf34-a183-4858": {"visibility": 0, "bbox": [48, -2944.34375, 151.078125, 17], "clickable": false, "set_of_marks": false}, "2e73e85b-ea9c-44a7": {"visibility": 0, "bbox": [48, -2944.34375, 151.078125, 17], "clickable": false, "set_of_marks": false}, "eb7212c5-24af-4055": {"visibility": 0, "bbox": [199.078125, -2944.34375, 482.921875, 17], "clickable": false, "set_of_marks": false}, "147b6219-5edd-48bb": {"visibility": 0, "bbox": [48, -2926.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "116d5fe3-1a03-475a": {"visibility": 0, "bbox": [48, -2926.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "0cb8fea0-59b9-471d": {"visibility": 0, "bbox": [48, -2926.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "0c549d5d-7194-4927": {"visibility": 0, "bbox": [48, -2926.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "c223124f-5e5a-4068": {"visibility": 0, "bbox": [48, -2926.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "c44ad642-bf7f-4c9d": {"visibility": 0, "bbox": [48, -2926.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "66d18b6b-66a1-4dbe": {"visibility": 0, "bbox": [52, -2908.34375, 0, 17], "clickable": false, "set_of_marks": false}, "6085237d-6eed-43f5": {"visibility": 0, "bbox": [52, -2908.34375, 0, 17], "clickable": false, "set_of_marks": false}, "734532c1-0a36-4a49": {"visibility": 0, "bbox": [48, -2890.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "ea1ce600-d536-4bea": {"visibility": 0, "bbox": [48, -2890.34375, 0, 17], "clickable": false, "set_of_marks": false}, "64e90a4a-ac01-4595": {"visibility": 0, "bbox": [48, -2890.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "e95e6237-5174-4bbc": {"visibility": 0, "bbox": [48, -2890.34375, 145.140625, 17], "clickable": false, "set_of_marks": false}, "c3e0f0b2-c02f-437d": {"visibility": 0, "bbox": [48, -2890.34375, 145.140625, 17], "clickable": false, "set_of_marks": false}, "9b033c7c-beab-40e3": {"visibility": 0, "bbox": [193.140625, -2890.34375, 730.734375, 17], "clickable": false, "set_of_marks": false}, "7b69e0ef-cd41-4e44": {"visibility": 0, "bbox": [48, -2872.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "af274418-9d9a-4391": {"visibility": 0, "bbox": [48, -2872.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "f135bd82-7322-4bee": {"visibility": 0, "bbox": [48, -2872.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "4a344f00-0347-467c": {"visibility": 0, "bbox": [48, -2872.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "ad704739-a984-489c": {"visibility": 0, "bbox": [48, -2872.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "7572012a-e89a-4b59": {"visibility": 0, "bbox": [48, -2872.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "43b1a1bf-d0db-47ee": {"visibility": 0, "bbox": [52, -2854.34375, 0, 17], "clickable": false, "set_of_marks": false}, "109d1584-50ff-402f": {"visibility": 0, "bbox": [52, -2854.34375, 0, 17], "clickable": false, "set_of_marks": false}, "ac64a644-c138-496d": {"visibility": 0, "bbox": [48, -2836.34375, 1224, 54], "clickable": false, "set_of_marks": false}, "c520a713-6201-4a44": {"visibility": 0, "bbox": [48, -2836.34375, 0, 17], "clickable": false, "set_of_marks": false}, "b65ceba9-26f7-4f38": {"visibility": 0, "bbox": [48, -2836.34375, 1224, 53], "clickable": false, "set_of_marks": false}, "932b021b-6a97-422f": {"visibility": 0, "bbox": [48, -2836.34375, 91.984375, 17], "clickable": false, "set_of_marks": false}, "6e344c53-ab99-4a3e": {"visibility": 0, "bbox": [48, -2836.34375, 91.984375, 17], "clickable": false, "set_of_marks": false}, "c13f4f01-082c-42dc": {"visibility": 0, "bbox": [139.984375, -2836.34375, 610.765625, 17], "clickable": false, "set_of_marks": false}, "0c7f39b2-d7f0-4d06": {"visibility": 0, "bbox": [48, -2818.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "bf9d23cb-ffe8-42a8": {"visibility": 0, "bbox": [48, -2818.34375, 1224, 35], "clickable": false, "set_of_marks": false}, "0c5d0d86-9405-414a": {"visibility": 0, "bbox": [48, -2818.34375, 1224, 18], "clickable": true, "set_of_marks": false}, "4b0a7571-d1a1-4b2f": {"visibility": 0, "bbox": [48, -2818.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "bd6ae1fd-313a-4fd2": {"visibility": 0, "bbox": [48, -2818.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1befafbc-1ff1-44fa": {"visibility": 0, "bbox": [48, -2818.34375, 1224, 18], "clickable": false, "set_of_marks": false}, "1db25a60-bd78-49e6": {"visibility": 0, "bbox": [52, -2800.34375, 0, 17], "clickable": false, "set_of_marks": false}, "849ca63a-ed50-4fb2": {"visibility": 0, "bbox": [52, -2800.34375, 0, 17], "clickable": false, "set_of_marks": false}, "5bd00d6e-090c-4d5d": {"visibility": 0, "bbox": [8, -2766.34375, 582.4375, 17], "clickable": false, "set_of_marks": false}, "b17cbd73-1346-4cd3": {"visibility": 0, "bbox": [8, -2748.34375, 1264, 3123], "clickable": false, "set_of_marks": false}, "6fc7583c-68c2-4c67": {"visibility": 0, "bbox": [8, -2748.34375, 1500, 1000], "clickable": false, "set_of_marks": false}, "f432101d-a660-45f3": {"visibility": 0, "bbox": [8, -562.34375, 59.53125, 18], "clickable": false, "set_of_marks": false}, "8fdc3dc8-45f0-406d": {"visibility": 0, "bbox": [67.53125, -1748.34375, 1200, 1200], "clickable": false, "set_of_marks": false}, "7e817503-e31f-4e7b": {"visibility": 0, "bbox": [8, -544.34375, 735, 919], "clickable": false, "set_of_marks": false}, "3c14b640-e0f8-4963": {"visibility": 0, "bbox": [8, 374.65625, 1264, 34.328125], "clickable": false, "set_of_marks": false}, "9ae2c74a-fc18-4f2c": {"visibility": 0, "bbox": [8, 374.65625, 92.3125, 34.328125], "clickable": false, "set_of_marks": false}, "15c4ad35-0bcd-4bfb": {"visibility": 0, "bbox": [16, 377.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "d7ee96c0-2f68-4184": {"visibility": 0, "bbox": [16, 377.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "882c22d3-4f03-4791": {"visibility": 0, "bbox": [16, 377.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "41fa1c18-8478-4a25": {"visibility": 0, "bbox": [16, 377.65625, 76.3125, 15], "clickable": false, "set_of_marks": false}, "3807a98c-24a1-43f6": {"visibility": 0, "bbox": [16, 392.65625, 76.3125, 13.328125], "clickable": false, "set_of_marks": false}, "01c0b171-fbaf-4980": {"visibility": 0, "bbox": [45.828125, 392.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "86b13274-7569-42e5": {"visibility": 0, "bbox": [48.3125, 392.65625, 11.6875, 13.328125], "clickable": false, "set_of_marks": false}, "db8701db-cb0a-4b7d": {"visibility": 0, "bbox": [100.3125, 374.65625, 97.25, 34.328125], "clickable": false, "set_of_marks": false}, "c1d7c71b-5b4a-4e4b": {"visibility": 0, "bbox": [108.3125, 377.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "efeed04c-b44a-4f9e": {"visibility": 0, "bbox": [108.3125, 377.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "941d7e81-54a1-4407": {"visibility": 0, "bbox": [108.3125, 377.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "30e60d7a-4227-478d": {"visibility": 0, "bbox": [108.3125, 377.65625, 81.25, 15], "clickable": false, "set_of_marks": false}, "49cbddca-2547-4643": {"visibility": 0, "bbox": [108.3125, 392.65625, 81.25, 13.328125], "clickable": false, "set_of_marks": false}, "4b5e87b0-8909-48cb": {"visibility": 0, "bbox": [140.609375, 392.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "73801223-e18f-4f55": {"visibility": 0, "bbox": [143.09375, 393.484375, 11.6875, 11.671875], "clickable": false, "set_of_marks": false}, "5328c8f5-6e7b-4b37": {"visibility": 0, "bbox": [197.5625, 374.65625, 125.40625, 34.328125], "clickable": false, "set_of_marks": false}, "beb1a249-f195-4780": {"visibility": 0, "bbox": [205.5625, 377.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "f30c8632-223c-41cd": {"visibility": 0, "bbox": [205.5625, 377.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "00b40a5c-8b55-4306": {"visibility": 0, "bbox": [205.5625, 377.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "45f0477f-5948-4d8d": {"visibility": 0, "bbox": [205.5625, 377.65625, 109.40625, 15], "clickable": false, "set_of_marks": false}, "046815fd-49a0-4d80": {"visibility": 0, "bbox": [205.5625, 392.65625, 109.40625, 13.328125], "clickable": false, "set_of_marks": false}, "f06c22ed-34ee-4145": {"visibility": 0, "bbox": [251.9375, 392.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "e4926902-8bcb-4dd1": {"visibility": 0, "bbox": [255.265625, 392.65625, 10, 13.328125], "clickable": false, "set_of_marks": false}, "a673b0ab-e6ce-48e4": {"visibility": 0, "bbox": [322.96875, 374.65625, 78.96875, 34.328125], "clickable": false, "set_of_marks": false}, "cd842394-6c4e-49dd": {"visibility": 0, "bbox": [330.96875, 377.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "4d452c03-7a5e-4211": {"visibility": 0, "bbox": [330.96875, 377.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c354d42e-d167-4fee": {"visibility": 0, "bbox": [330.96875, 377.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "c70406f2-450e-44fb": {"visibility": 0, "bbox": [330.96875, 377.65625, 62.96875, 15], "clickable": false, "set_of_marks": false}, "a0e3384d-1b8c-43e4": {"visibility": 0, "bbox": [330.96875, 392.65625, 62.96875, 13.328125], "clickable": false, "set_of_marks": false}, "8fc5d79e-e0d0-44e9": {"visibility": 0, "bbox": [354.125, 392.65625, 16.65625, 13.328125], "clickable": false, "set_of_marks": false}, "5eb5a9bc-d3f4-442a": {"visibility": 0, "bbox": [355.78125, 392.65625, 13.34375, 13.328125], "clickable": false, "set_of_marks": false}, "07755d30-62e1-4a1f": {"visibility": 0, "bbox": [8, 408.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "2fde4da4-7019-4462": {"visibility": 0, "bbox": [8, 408.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "baf2fc3a-86fe-4e58": {"visibility": 0, "bbox": [8, 408.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "b4fa73e8-609f-4065": {"visibility": 0, "bbox": [8, 408.984375, 1264, 136], "clickable": false, "set_of_marks": false}, "6caeefc2-256e-4a09": {"visibility": 0, "bbox": [8, 408.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a9db8675-be7c-4f80": {"visibility": 0, "bbox": [8, 408.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "cb809cd9-bc38-468d": {"visibility": 0, "bbox": [8, 408.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "fc27ada2-34ee-4a20": {"visibility": 0, "bbox": [8, 408.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "d85608f9-95c5-485a": {"visibility": 0, "bbox": [8, 408.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "87e308e6-ec34-4902": {"visibility": 0, "bbox": [8, 408.984375, 20, 16], "clickable": false, "set_of_marks": false}, "61c34ddc-5e6d-4ab1": {"visibility": 0, "bbox": [9, 408.984375, 18, 16], "clickable": false, "set_of_marks": false}, "1f10bcb4-130f-4dc1": {"visibility": 0, "bbox": [8, 424.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "08f0f54c-0bdd-493d": {"visibility": 0, "bbox": [8, 442.984375, 1264, 102], "clickable": false, "set_of_marks": false}, "fe52bdec-20a5-44cb": {"visibility": 0, "bbox": [8, 442.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "f027ca85-503b-4dbe": {"visibility": 0, "bbox": [8, 442.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "79b3a7fc-87d2-4198": {"visibility": 0, "bbox": [8, 460.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "96bc970a-dd6b-4d62": {"visibility": 0, "bbox": [8, 460.984375, 14, 16], "clickable": false, "set_of_marks": false}, "1654b322-db7b-44cf": {"visibility": 0, "bbox": [8.5, 462.484375, 13, 13], "clickable": false, "set_of_marks": false}, "ac672e91-840a-4334": {"visibility": 0, "bbox": [8, 476.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "74a5fea7-e5d3-499c": {"visibility": 0, "bbox": [8, 476.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "38811f1e-9b89-4d47": {"visibility": 0, "bbox": [8, 494.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "9e58f75e-70ee-4580": {"visibility": 0, "bbox": [8, 494.984375, 14, 16], "clickable": false, "set_of_marks": false}, "c2a9e5bc-f5cd-4f60": {"visibility": 0, "bbox": [8.5, 496.484375, 13, 13], "clickable": false, "set_of_marks": false}, "55cd0fa6-d442-4e10": {"visibility": 0, "bbox": [8, 510.984375, 1264, 34], "clickable": false, "set_of_marks": false}, "a1719217-08f2-499c": {"visibility": 0, "bbox": [8, 510.984375, 1264, 18], "clickable": false, "set_of_marks": false}, "5c2c270e-cc8d-4a8e": {"visibility": 0, "bbox": [8, 528.984375, 1264, 16], "clickable": false, "set_of_marks": false}, "6c903f01-123e-4f2a": {"visibility": 0, "bbox": [8, 528.984375, 14, 16], "clickable": false, "set_of_marks": false}, "61944903-e5a4-43f3": {"visibility": 0, "bbox": [8.5, 530.484375, 13, 13], "clickable": false, "set_of_marks": false}, "60b5aa70-ec46-4056": {"visibility": 0, "bbox": [8, 544.984375, 1264, 0], "clickable": false, "set_of_marks": false}, "4d74a06b-e71a-4fb4": {"visibility": 1, "bbox": [220, 504, 1043.3333740234375, 73.33333587646484], "clickable": false, "set_of_marks": true}, "e371ba15-31ee-4d95": {"visibility": 1, "bbox": [357.66668701171875, 504, 768, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "d5e67e5a-7c1f-44aa": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "c6fce410-0af7-455f": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "245985ad-1b58-4758": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "8e126868-5968-4212": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3800cab4-6404-4885": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "73a881eb-242e-4ba9": {"visibility": 1, "bbox": [381.66668701171875, 504, 720, 73.33333587646484], "clickable": false, "set_of_marks": 0}, "3ee2c1ad-db74-4aad": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": true}, "b487f7c7-5a80-4400": {"visibility": 1, "bbox": [389.66668701171875, 512, 704, 57.333335876464844], "clickable": false, "set_of_marks": 0}, "3196376b-2c1a-4dc4": {"visibility": 0, "bbox": [8, 602.3125, 1264, 0], "clickable": false, "set_of_marks": false}, "bdc5fb0d-eb1f-4496": {"visibility": 1, "bbox": [891.5416870117188, 520.6666870117188, 194.125, 40], "clickable": false, "set_of_marks": true}, "f6de9c49-6082-4769": {"visibility": 1, "bbox": [899.5416870117188, 524.6666870117188, 130.125, 32], "clickable": false, "set_of_marks": true}, "f59e4dfc-5b11-4e79": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": true}, "13f195e4-3b1a-4e39": {"visibility": 1, "bbox": [870.65625, 498.2708435058594, 187.89584350585938, 24], "clickable": false, "set_of_marks": 0}, "ec05d9bc-cfba-497f": {"visibility": 1, "bbox": [878.65625, 502.2708435058594, 171.89584350585938, 16], "clickable": false, "set_of_marks": true}, "0669e2bd-e30d-461f": {"visibility": 1, "bbox": [878.65625, 501.60418701171875, 171.89584350585938, 16.666667938232422], "clickable": false, "set_of_marks": 0}, "fa488be5-8f46-475c": {"visibility": 1, "bbox": [907.5416870117188, 529, 114.125, 23.33333396911621], "clickable": false, "set_of_marks": true}, "b31b1f81-4012-497f": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": true}, "63a75b8d-57dc-4086": {"visibility": 1, "bbox": [907.5416870117188, 529, 39.333335876464844, 23.33333396911621], "clickable": false, "set_of_marks": 0}, "ddf67cb9-e0f7-4966": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 32, 16], "clickable": false, "set_of_marks": true}, "3a40e1fd-2b4a-4f63": {"visibility": 1, "bbox": [911.2083740234375, 532.6666870117188, 16, 16], "clickable": false, "set_of_marks": true}, "c2907036-f298-445f": {"visibility": 1, "bbox": [950.875, 533.6666870117188, 50.78125, 14], "clickable": false, "set_of_marks": true}, "fa5817d7-bb0c-4832": {"visibility": 1, "bbox": [1005.65625, 533.6666870117188, 16.010417938232422, 14], "clickable": false, "set_of_marks": true}, "771ccc57-eaf1-4333": {"visibility": 1, "bbox": [1037.666748046875, 520.6666870117188, 40, 40], "clickable": false, "set_of_marks": true}, "912c7141-3166-4ce3": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": true}, "a75b1676-c8ed-450f": {"visibility": 1, "bbox": [1045.166748046875, 530.6666870117188, 25, 20], "clickable": false, "set_of_marks": 0}, "a48b63ea-377a-410d": {"visibility": 1, "bbox": [1050.272216796875, 532.0221557617188, 14.7890625, 17.39453125], "clickable": false, "set_of_marks": true}, "d8d56ac9-756f-4ca4": {"visibility": 0, "bbox": [8, 639.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "b2f3197f-6203-4124": {"visibility": 0, "bbox": [8, 639.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c9f80d24-bbcf-4278": {"visibility": 0, "bbox": [8, 639.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "01f4d9a2-9891-4b00": {"visibility": 0, "bbox": [8, 639.640625, 1264, 72], "clickable": false, "set_of_marks": false}, "c293cbca-26f4-4934": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "5626b5a7-7942-4d89": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "c29cb7e2-9119-47dd": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "754773a2-b100-4c4e": {"visibility": 0, "bbox": [8, 639.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "cf29f992-4a4c-4286": {"visibility": 0, "bbox": [8, 639.640625, 20, 16], "clickable": false, "set_of_marks": false}, "d8550be2-cf6b-4cdb": {"visibility": 0, "bbox": [9, 639.640625, 18, 16], "clickable": false, "set_of_marks": false}, "48dd9c76-5ecd-4e54": {"visibility": 0, "bbox": [28, 639.640625, 39.109375, 17], "clickable": false, "set_of_marks": false}, "277354ee-ef61-4823": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "a14a6eb0-8213-4994": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "23dc3d59-bd52-4cc1": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "e8cb4547-9b65-47c7": {"visibility": 0, "bbox": [8, 657.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "0632f4ac-2c29-4c60": {"visibility": 0, "bbox": [8, 657.640625, 20, 16], "clickable": false, "set_of_marks": false}, "40cf8510-f67b-47eb": {"visibility": 0, "bbox": [10, 657.640625, 16, 16], "clickable": false, "set_of_marks": false}, "5705071a-997b-417d": {"visibility": 0, "bbox": [28, 657.640625, 57.765625, 17], "clickable": false, "set_of_marks": false}, "fed65204-c3b2-46f6": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "d57ffa09-b0e0-47fb": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "62c708cd-32bc-428a": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "03e78672-f8b7-459b": {"visibility": 0, "bbox": [8, 675.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "94ef85f9-ace2-40ac": {"visibility": 0, "bbox": [8, 675.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5884723d-7f3a-4da4": {"visibility": 0, "bbox": [9, 675.640625, 18, 16], "clickable": false, "set_of_marks": false}, "ed9a09b8-d0b3-44c0": {"visibility": 0, "bbox": [28, 675.640625, 77.46875, 17], "clickable": false, "set_of_marks": false}, "b0163080-c15b-421d": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "7800c583-f88f-41a5": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "804a7704-8fed-4cf3": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": true, "set_of_marks": false}, "725d1576-a722-46f6": {"visibility": 0, "bbox": [8, 693.640625, 1264, 18], "clickable": false, "set_of_marks": false}, "1a63b844-5f65-4f6b": {"visibility": 0, "bbox": [8, 693.640625, 20, 16], "clickable": false, "set_of_marks": false}, "5d87abde-76fc-47ac": {"visibility": 0, "bbox": [10, 693.640625, 15, 16], "clickable": false, "set_of_marks": false}, "06d1a10e-85e7-402c": {"visibility": 0, "bbox": [28, 693.640625, 64.4375, 17], "clickable": false, "set_of_marks": false}, "3d56b7b3-4f36-4b31": {"visibility": 0, "bbox": [8, 711.640625, 1264, 0], "clickable": false, "set_of_marks": false}, "add91db0-a901-4abd": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ea192cff-cc91-489b": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7398e464-c00c-4104": {"visibility": 0, "bbox": [576, -7242, 704, 34], "clickable": false, "set_of_marks": false}, "d7fb0808-a327-47f0": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ef182e6f-bc76-4e95": {"visibility": 0, "bbox": [8, 711.640625, 0, 0], "clickable": false, "set_of_marks": false}, "3d2da39e-6f93-46c2": {"visibility": 0, "bbox": [7, 710.640625, 1, 1], "clickable": false, "set_of_marks": false}, "6cd29c03-8880-4c83": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "f503ed55-fdfc-4865": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "5d22fdc0-1891-46df": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "b6a0aea8-e664-4585": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "e634cc68-5524-473c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bb15a53b-92e7-4db4": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "58c2bff9-27a9-4ba3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "3b977f20-153f-481f": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "42766662-4510-4a90": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "9e9603c1-db78-4701": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "91de60b4-e065-49be": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "ec362cfb-9ad4-4aa7": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "7fdc84d2-ae73-444c": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "6bfe2c82-51d9-4e9e": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "bf6bc7d8-db61-40e3": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "28c2dd7f-dd64-4908": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "98a1fb43-b26a-473d": {"visibility": 0, "bbox": [0, -7242, 0, 0], "clickable": false, "set_of_marks": false}, "97ea925f-3079-4d47": {"visibility": 0, "bbox": [0, -7242, 0, 0], "clickable": false, "set_of_marks": false}, "6e93f876-ce11-4c7d": {"visibility": 0, "bbox": [0, -7242, 0, 0], "clickable": false, "set_of_marks": false}, "b77a2b32-0234-4abf": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}, "da353bc4-69f8-47aa": {"visibility": 0, "bbox": [0, -7242, 0, 0], "clickable": false, "set_of_marks": false}, "30ef8b38-b43e-43dd": {"visibility": 0, "bbox": [0, -7242, 0, 0], "clickable": false, "set_of_marks": false}, "bfaede00-e84f-44ba": {"visibility": 0, "bbox": null, "clickable": 0, "set_of_marks": 0}} \ No newline at end of file diff --git a/demonstrations/ieckqwf/form.json b/demonstrations/ieckqwf/form.json new file mode 100644 index 0000000000000000000000000000000000000000..ced31cc99439b90d15a99671bc6c6bdb8267ebb2 --- /dev/null +++ b/demonstrations/ieckqwf/form.json @@ -0,0 +1 @@ +{"annotator": "Juno", "description": "To find some Easy breakfast recipe that requires minimal time on www.perplexity.ai", "tasks": ["AI Tools"], "navigator_name": "Navigator", "instructor_name": "Instructor", "instructor_sees_screen": true, "shortcode": "ieckqwf", "upload_date": "2023-07-20 09:25:39", "uses_ai_generated_output": false} \ No newline at end of file diff --git a/demonstrations/ieckqwf/metadata.json b/demonstrations/ieckqwf/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..248f3ff0537a50d4e97ce5e535d68f0c2fc12cdc --- /dev/null +++ b/demonstrations/ieckqwf/metadata.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b45c2b10de1464c243d2191be546765a79287ab3afa9730035c8d2ac72d2e860 +size 427 diff --git a/demonstrations/ieckqwf/replay.json b/demonstrations/ieckqwf/replay.json new file mode 100644 index 0000000000000000000000000000000000000000..db7955d92ad9fc2cf572a6443aa15b71fcf53441 --- /dev/null +++ b/demonstrations/ieckqwf/replay.json @@ -0,0 +1 @@ +{"data":[{"timestamp":-2.536,"speaker":"instructor","utterance":"Hii","type":"chat"},{"timestamp":4.464,"speaker":"navigator","utterance":"Hello","type":"chat"},{"timestamp":20.464,"speaker":"instructor","utterance":"Please open Perplexity ai.","type":"chat"},{"timestamp":29.464,"speaker":"navigator","utterance":"Sure","type":"chat"},{"type":"browser","timestamp":37.39800000190735,"state":{"screenshot":null,"page":null},"action":{"intent":"load","arguments":{"metadata":{"mouseX":0,"mouseY":0,"tabId":1465016508,"timestamp":1689856106934,"url":"https://www.perplexity.ai/","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"documentId":"C39CA87488A0B25B7F3CB16D374E8270","documentLifecycle":"active","frameId":0,"frameType":"outermost_frame","parentFrameId":-1,"processId":498,"tabId":1465016508,"timeStamp":1689856106775.688,"transitionQualifiers":["from_address_bar"],"transitionType":"typed","url":"https://www.perplexity.ai/"}},"event_id":0,"element_html":null,"screenshot_effect":null}},{"timestamp":55.464,"speaker":"navigator","utterance":"How can I help you?","type":"chat"},{"timestamp":58.464,"speaker":"instructor","utterance":"Find me some Easy breakfast recipe that requires minimal time.","type":"chat"},{"type":"browser","timestamp":65.13700008392334,"state":{"screenshot":"screenshot-1-0.png","page":"page-1-0.html","screenshot_status":"good"},"action":{"intent":"paste","arguments":{"metadata":{"mouseX":586,"mouseY":283,"tabId":1465016508,"timestamp":1689856134673,"url":"https://www.perplexity.ai/","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":30424.19999998808},"element":{"attributes":{"autocomplete":"off","autofocus":"","class":"outline-none focus:outline-none w-full font-sans duration-200 transition-all caret-super focus:ring-1 resize-none overflow-auto max-h-[50vh] bg-white focus:bg-white border text-textMain border-borderMain focus:ring-borderMain place-holder-textOff dark:bg-offsetDark dark:focus:bg-offsetDark dark:text-textMainDark dark:placeholder-textOffDark dark:border-borderMainDark dark:focus:ring-borderMainDark shadow-sm rounded-t-md rounded-b-md text-base p-md pb-xl","data-ms-editor":"true","data-webtasks-id":"078fd3ba-57eb-46f7","placeholder":"Ask anything...","spellcheck":"false","style":"height: 113.333px !important;"},"bbox":{"bottom":530.0000038146973,"height":170.00000381469727,"left":573.0,"right":1653.0,"top":360.0,"width":1080.0,"x":573.0,"y":360.0},"innerHTML":"","outerHTML":"","tagName":"TEXTAREA","textContent":"","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/textarea[1]"},"pasted":"Find me some Easy breakfast recipe that requires minimal time."},"event_id":1,"element_html":"","screenshot_effect":null}},{"type":"browser","timestamp":74.0609998703003,"state":{"screenshot":"screenshot-2-0.png","page":"page-2-0.html","screenshot_status":"good"},"action":{"intent":"scroll","arguments":{"metadata":{"mouseX":472,"mouseY":229,"tabId":1465016508,"timestamp":1689856143597,"url":"https://www.perplexity.ai/search?q=Find%20me%20some%20Easy%20breakfast%20recipe%20that%20requires%20minimal%20time.&copilot=false&focus=internet","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":0,"clientX":642.0,"clientY":388.5,"composed":true,"ctrlKey":false,"detail":0,"eventPhase":0,"layerX":78,"layerY":110,"metaKey":false,"movementX":0,"movementY":0,"offsetX":117.0,"offsetY":301.5,"pageX":642.0,"pageY":562.5,"returnValue":true,"screenX":642.0,"screenY":495.0,"shiftKey":false,"timeStamp":38669.19999998808,"x":642.0,"y":388.5},"scrollX":0,"scrollY":450},"event_id":2,"element_html":null,"screenshot_effect":"screenshot-2-1.png"}},{"type":"browser","timestamp":89.2590000629425,"state":{"screenshot":"screenshot-6-1.png","page":"page-7-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":342,"mouseY":263,"tabId":1465016508,"timestamp":1689856158795,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":513.0,"clientY":394.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":342,"layerY":383,"metaKey":false,"movementX":0,"movementY":0,"offsetX":183.0,"offsetY":484.5,"pageX":513.0,"pageY":574.5,"returnValue":true,"screenX":513.0,"screenY":501.0,"shiftKey":false,"timeStamp":54553.09999996424,"x":513.0,"y":394.5},"element":{"attributes":{"class":"flex flex-col pt-lg pb-[124px] px-md md:px-lg","data-webtasks-id":"59b3bca9-16ea-42a2"},"bbox":{"bottom":3260.1874980926514,"height":3349.6875,"left":330.0,"right":1871.0000610351562,"top":-89.50000190734863,"width":1541.0000610351562,"x":330.0,"y":-89.50000190734863},"innerHTML":"
\"User
webtasksnavigator8343
Like
Find me some Easy breakfast recipe that requires minimal time.
Answer
Here are some easy breakfast recipes that require minimal time:\n
    \n
  1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
    1
    .
    \n
  2. \n
  3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
    1
    .
    \n
  4. \n
  5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
    1
    .
    \n
  6. \n
  7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
    1
    .
    \n
  8. \n
  9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
    2
    .
    \n
  10. \n
  11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
    3
    .
    \n
  12. \n
  13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
    4
    .
    \n
  14. \n
  15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
    5
    .
    \n
  16. \n
  17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
    5
    .
    \n
  18. \n
  19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
    5
    .
    \n
  20. \n
\nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.
\"related\"\"related\"\"related\"\"related\"
Related
breakfast recipes that can be made ahead of time
healthy breakfast options that require minimal prep time
breakfast recipes that can be made with pantry staples
","outerHTML":"
\"User
webtasksnavigator8343
Like
Find me some Easy breakfast recipe that requires minimal time.
Answer
Here are some easy breakfast recipes that require minimal time:\n
    \n
  1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
    1
    .
    \n
  2. \n
  3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
    1
    .
    \n
  4. \n
  5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
    1
    .
    \n
  6. \n
  7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
    1
    .
    \n
  8. \n
  9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
    2
    .
    \n
  10. \n
  11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
    3
    .
    \n
  12. \n
  13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
    4
    .
    \n
  14. \n
  15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
    5
    .
    \n
  16. \n
  17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
    5
    .
    \n
  18. \n
  19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
    5
    .
    \n
  20. \n
\nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.
\"related\"\"related\"\"related\"\"related\"
Related
breakfast recipes that can be made ahead of time
healthy breakfast options that require minimal prep time
breakfast recipes that can be made with pantry staples
","tagName":"DIV","textContent":"webtasksnavigator8343LikeFind me some Easy breakfast recipe that requires minimal time.Quick Search42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Hometasteofhome·133+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)favfamilyrecipes·236 Quick and Easy Breakfast Ideas to Start Your Day Off Rightgoodhousekeeping·318 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatistgreatist·440 Easy Breakfast Ideas - A Couple Cooksacouplecooks·5Answer Here are some easy breakfast recipes that require minimal time:\n\n\nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time1.\n\n\nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish1.\n\n\nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast1.\n\n\nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option1.\n\n\nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea2.\n\n\nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day3.\n\n\nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples4.\n\n\nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast5.\n\n\nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast5.\n\n\nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients5.\n\n\nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.Not AccurateView SourcesCopy To ClipboardEdit QueryRelatedbreakfast recipes that can be made ahead of timehealthy breakfast options that require minimal prep timebreakfast recipes that can be made with pantry staples5 left. Reloads every 4 hours.Copilot · 5","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]"}},"event_id":7,"element_html":"
\"User
webtasksnavigator8343
Like
Find me some Easy breakfast recipe that requires minimal time.
Answer
Here are some easy breakfast recipes that require minimal time:\n
    \n
  1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
    1
    .
    \n
  2. \n
  3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
    1
    .
    \n
  4. \n
  5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
    1
    .
    \n
  6. \n
  7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
    1
    .
    \n
  8. \n
  9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
    2
    .
    \n
  10. \n
  11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
    3
    .
    \n
  12. \n
  13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
    4
    .
    \n
  14. \n
  15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
    5
    .
    \n
  16. \n
  17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
    5
    .
    \n
  18. \n
  19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
    5
    .
    \n
  20. \n
\nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.
\"related\"\"related\"\"related\"\"related\"
Related
breakfast recipes that can be made ahead of time
healthy breakfast options that require minimal prep time
breakfast recipes that can be made with pantry staples
","screenshot_effect":null}},{"type":"browser","timestamp":90.72499990463257,"state":{"screenshot":"screenshot-8-1.png","page":"page-8-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":1066,"mouseY":486,"tabId":1465016508,"timestamp":1689856160261,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":56032.09999996424},"element":{"attributes":{"class":"","data-webtasks-id":"60e543e9-3c49-4101"},"bbox":{"bottom":412.5,"height":33.0,"left":524.5000305175781,"right":1296.4375305175781,"top":379.5,"width":771.9375,"x":524.5000305175781,"y":379.5},"innerHTML":"Here are some easy breakfast recipes that require minimal time:","outerHTML":"Here are some easy breakfast recipes that require minimal time:","tagName":"SPAN","textContent":"Here are some easy breakfast recipes that require minimal time:","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/span[1]"},"selected":"Here are some easy breakfast recipes that require minimal time:"},"event_id":8,"element_html":"Here are some easy breakfast recipes that require minimal time:","screenshot_effect":null}},{"type":"browser","timestamp":97.14800000190735,"state":{"screenshot":"screenshot-8-1.png","page":"page-9-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":361,"mouseY":299,"tabId":1465016508,"timestamp":1689856166684,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":541.5,"clientY":448.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":11,"layerY":46,"metaKey":false,"movementX":0,"movementY":0,"offsetX":18.0,"offsetY":22.5,"pageX":541.5,"pageY":628.5,"returnValue":true,"screenX":541.5,"screenY":555.0,"shiftKey":false,"timeStamp":62434.5,"x":541.5,"y":448.5},"element":{"attributes":{"class":"list-decimal list-outside","data-webtasks-id":"6cffd73b-fbf4-4c5c"},"bbox":{"bottom":1284.500015258789,"height":858.0,"left":524.5000305175781,"right":1676.5000305175781,"top":426.50001525878906,"width":1152.0,"x":524.5000305175781,"y":426.50001525878906},"innerHTML":"\n
  • \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
    1
    .
    \n
  • \n
  • \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
    1
    .
    \n
  • \n
  • \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
    1
    .
    \n
  • \n
  • \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
    1
    .
    \n
  • \n
  • \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
    2
    .
    \n
  • \n
  • \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
    3
    .
    \n
  • \n
  • \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
    4
    .
    \n
  • \n
  • \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
    5
    .
    \n
  • \n
  • \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
    5
    .
    \n
  • \n
  • \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
    5
    .
    \n
  • \n","outerHTML":"
      \n
    1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
      1
      .
      \n
    2. \n
    3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
      1
      .
      \n
    4. \n
    5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
      1
      .
      \n
    6. \n
    7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
      1
      .
      \n
    8. \n
    9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
      2
      .
      \n
    10. \n
    11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
      3
      .
      \n
    12. \n
    13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
      4
      .
      \n
    14. \n
    15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
      5
      .
      \n
    16. \n
    17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
      5
      .
      \n
    18. \n
    19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
      5
      .
      \n
    20. \n
    ","tagName":"OL","textContent":"\n\nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time1.\n\n\nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish1.\n\n\nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast1.\n\n\nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option1.\n\n\nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea2.\n\n\nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day3.\n\n\nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples4.\n\n\nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast5.\n\n\nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast5.\n\n\nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients5.\n\n","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]"}},"event_id":9,"element_html":"
      \n
    1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
      1
      .
      \n
    2. \n
    3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
      1
      .
      \n
    4. \n
    5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
      1
      .
      \n
    6. \n
    7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
      1
      .
      \n
    8. \n
    9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
      2
      .
      \n
    10. \n
    11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
      3
      .
      \n
    12. \n
    13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
      4
      .
      \n
    14. \n
    15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
      5
      .
      \n
    16. \n
    17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
      5
      .
      \n
    18. \n
    19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
      5
      .
      \n
    20. \n
    ","screenshot_effect":null}},{"type":"browser","timestamp":99.08299994468689,"state":{"screenshot":"screenshot-10-1.png","page":"page-10-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":904,"mouseY":428,"tabId":1465016508,"timestamp":1689856168619,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":64391.30000001192},"element":{"attributes":{"data-webtasks-id":"88ea41e3-d5f6-4d7f"},"bbox":{"bottom":460.5,"height":33.0,"left":572.5000305175781,"right":997.8594360351562,"top":427.5,"width":425.3594055175781,"x":572.5000305175781,"y":427.5},"innerHTML":"Sausage & Crescent Roll Casserole","outerHTML":"Sausage & Crescent Roll Casserole","tagName":"STRONG","textContent":"Sausage & Crescent Roll Casserole","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[1]/span[2]/span[1]/strong[1]"},"selected":"Sausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time"},"event_id":10,"element_html":"Sausage & Crescent Roll Casserole","screenshot_effect":null}},{"type":"browser","timestamp":112.0,"state":{"screenshot":"screenshot-10-1.png","page":"page-12-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":702,"mouseY":377,"tabId":1465016508,"timestamp":1689856181536,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":1053.0,"clientY":565.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":352,"layerY":124,"metaKey":false,"movementX":0,"movementY":0,"offsetX":489.0,"offsetY":52.5,"pageX":1053.0,"pageY":745.5,"returnValue":true,"screenX":1053.0,"screenY":672.0,"shiftKey":false,"timeStamp":77299.39999997616,"x":1053.0,"y":565.5},"element":{"attributes":{"class":"","data-webtasks-id":"4b6bcea6-2209-4951"},"bbox":{"bottom":583.5,"height":69.0,"left":572.5000305175781,"right":1665.5469360351562,"top":514.5,"width":1093.0469055175781,"x":572.5000305175781,"y":514.5},"innerHTML":": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish","outerHTML":": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish","tagName":"SPAN","textContent":": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[2]/span[2]/span[2]"}},"event_id":12,"element_html":": Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish","screenshot_effect":null}},{"type":"browser","timestamp":113.60199999809265,"state":{"screenshot":"screenshot-13-1.png","page":"page-13-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":398,"mouseY":359,"tabId":1465016508,"timestamp":1689856183138,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":78910.30000001192},"element":{"attributes":{"data-webtasks-id":"f665eb1c-418c-46e2"},"bbox":{"bottom":547.5,"height":33.0,"left":572.5000305175781,"right":1006.4219055175781,"top":514.5,"width":433.921875,"x":572.5000305175781,"y":514.5},"innerHTML":"Overnight Cherry-Almond Oatmeal","outerHTML":"Overnight Cherry-Almond Oatmeal","tagName":"STRONG","textContent":"Overnight Cherry-Almond Oatmeal","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[2]/span[2]/span[1]/strong[1]"},"selected":"Overnight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish"},"event_id":13,"element_html":"Overnight Cherry-Almond Oatmeal","screenshot_effect":null}},{"type":"browser","timestamp":123.02900004386902,"state":{"screenshot":"screenshot-15-1.png","page":"page-17-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":381,"mouseY":309,"tabId":1465016508,"timestamp":1689856192565,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":571.5,"clientY":463.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":31,"layerY":157,"metaKey":false,"movementX":0,"movementY":0,"offsetX":9.0,"offsetY":13.5,"pageX":571.5,"pageY":795.0,"returnValue":true,"screenX":571.5,"screenY":570.0,"shiftKey":false,"timeStamp":88325.39999997616,"x":571.5,"y":463.5},"element":{"attributes":{"data-webtasks-id":"d2cc40af-1dd9-46ec"},"bbox":{"bottom":484.5,"height":33.0,"left":572.5000305175781,"right":833.3125305175781,"top":451.5,"width":260.8125,"x":572.5000305175781,"y":451.5},"innerHTML":"Chorizo Salsa Omelet","outerHTML":"Chorizo Salsa Omelet","tagName":"STRONG","textContent":"Chorizo Salsa Omelet","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[3]/span[2]/span[1]/strong[1]"}},"event_id":17,"element_html":"Chorizo Salsa Omelet","screenshot_effect":null}},{"type":"browser","timestamp":124.21000003814697,"state":{"screenshot":"screenshot-18-1.png","page":"page-18-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":891,"mouseY":442,"tabId":1465016508,"timestamp":1689856193746,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":89518.30000001192},"element":{"attributes":{"data-webtasks-id":"d2cc40af-1dd9-46ec"},"bbox":{"bottom":484.5,"height":33.0,"left":572.5000305175781,"right":833.3125305175781,"top":451.5,"width":260.8125,"x":572.5000305175781,"y":451.5},"innerHTML":"Chorizo Salsa Omelet","outerHTML":"Chorizo Salsa Omelet","tagName":"STRONG","textContent":"Chorizo Salsa Omelet","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[3]/span[2]/span[1]/strong[1]"},"selected":"Chorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast"},"event_id":18,"element_html":"Chorizo Salsa Omelet","screenshot_effect":null}},{"type":"browser","timestamp":133.59100008010864,"state":{"screenshot":"screenshot-18-1.png","page":"page-20-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":381,"mouseY":372,"tabId":1465016508,"timestamp":1689856203127,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":571.5,"clientY":558.0,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":31,"layerY":220,"metaKey":false,"movementX":0,"movementY":0,"offsetX":9.0,"offsetY":21.0,"pageX":571.5,"pageY":889.5,"returnValue":true,"screenX":571.5,"screenY":664.5,"shiftKey":false,"timeStamp":98877.09999996424,"x":571.5,"y":558.0},"element":{"attributes":{"data-webtasks-id":"a31a5b00-3f1d-4906"},"bbox":{"bottom":571.5,"height":33.0,"left":572.5000305175781,"right":862.4531707763672,"top":538.5,"width":289.95314025878906,"x":572.5000305175781,"y":538.5},"innerHTML":"Berries in Yogurt Cream","outerHTML":"Berries in Yogurt Cream","tagName":"STRONG","textContent":"Berries in Yogurt Cream","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[4]/span[2]/span[1]/strong[1]"}},"event_id":20,"element_html":"Berries in Yogurt Cream","screenshot_effect":null}},{"type":"browser","timestamp":135.78600001335144,"state":{"screenshot":"screenshot-23-1.png","page":"page-23-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":602,"mouseY":411,"tabId":1465016508,"timestamp":1689856205322,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":101094.39999997616},"element":{"attributes":{"data-webtasks-id":"a31a5b00-3f1d-4906"},"bbox":{"bottom":571.5,"height":33.0,"left":572.5000305175781,"right":862.4531707763672,"top":538.5,"width":289.95314025878906,"x":572.5000305175781,"y":538.5},"innerHTML":"Berries in Yogurt Cream","outerHTML":"Berries in Yogurt Cream","tagName":"STRONG","textContent":"Berries in Yogurt Cream","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[4]/span[2]/span[1]/strong[1]"},"selected":"Berries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option"},"event_id":23,"element_html":"Berries in Yogurt Cream","screenshot_effect":null}},{"type":"browser","timestamp":146.99300003051758,"state":{"screenshot":"screenshot-24-1.png","page":"page-25-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":383,"mouseY":223,"tabId":1465016508,"timestamp":1689856216529,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":574.5,"clientY":334.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":33,"layerY":270,"metaKey":false,"movementX":0,"movementY":0,"offsetX":12.0,"offsetY":10.5,"pageX":574.5,"pageY":964.5,"returnValue":true,"screenX":574.5,"screenY":441.0,"shiftKey":false,"timeStamp":112286.09999996424,"x":574.5,"y":334.5},"element":{"attributes":{"data-webtasks-id":"8a910f2a-bfa0-4494"},"bbox":{"bottom":358.5,"height":33.0,"left":572.5000305175781,"right":839.9375381469727,"top":325.5,"width":267.43750762939453,"x":572.5000305175781,"y":325.5},"innerHTML":"Breakfast Quesadillas","outerHTML":"Breakfast Quesadillas","tagName":"STRONG","textContent":"Breakfast Quesadillas","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[5]/span[2]/span[1]/strong[1]"}},"event_id":25,"element_html":"Breakfast Quesadillas","screenshot_effect":null}},{"type":"browser","timestamp":149.24200010299683,"state":{"screenshot":"screenshot-26-1.png","page":"page-27-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":1060,"mouseY":290,"tabId":1465016508,"timestamp":1689856218778,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":114550.39999997616},"element":{"attributes":{"data-webtasks-id":"8a910f2a-bfa0-4494"},"bbox":{"bottom":358.5,"height":33.0,"left":572.5000305175781,"right":839.9375381469727,"top":325.5,"width":267.43750762939453,"x":572.5000305175781,"y":325.5},"innerHTML":"Breakfast Quesadillas","outerHTML":"Breakfast Quesadillas","tagName":"STRONG","textContent":"Breakfast Quesadillas","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[5]/span[2]/span[1]/strong[1]"},"selected":"Breakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea"},"event_id":27,"element_html":"Breakfast Quesadillas","screenshot_effect":null}},{"type":"browser","timestamp":162.2409999370575,"state":{"screenshot":"screenshot-26-1.png","page":"page-28-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":384,"mouseY":263,"tabId":1465016508,"timestamp":1689856231777,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":576.0,"clientY":394.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":34,"layerY":310,"metaKey":false,"movementX":0,"movementY":0,"offsetX":12.0,"offsetY":19.5,"pageX":576.0,"pageY":1024.5,"returnValue":true,"screenX":576.0,"screenY":501.0,"shiftKey":false,"timeStamp":127539,"x":576.0,"y":394.5},"element":{"attributes":{"data-webtasks-id":"dc8b9dd3-d402-4580"},"bbox":{"bottom":409.5,"height":33.0,"left":572.5000305175781,"right":1235.4375457763672,"top":376.5,"width":662.9375152587891,"x":572.5000305175781,"y":376.5},"innerHTML":"Muffins de limón y almendra con semillas de amapola","outerHTML":"Muffins de limón y almendra con semillas de amapola","tagName":"STRONG","textContent":"Muffins de limón y almendra con semillas de amapola","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[6]/span[2]/span[1]/strong[1]"}},"event_id":28,"element_html":"Muffins de limón y almendra con semillas de amapola","screenshot_effect":null}},{"type":"browser","timestamp":164.37999987602234,"state":{"screenshot":"screenshot-30-1.png","page":"page-31-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":807,"mouseY":323,"tabId":1465016508,"timestamp":1689856233916,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":129688.30000001192},"element":{"attributes":{"data-webtasks-id":"dc8b9dd3-d402-4580"},"bbox":{"bottom":409.5,"height":33.0,"left":572.5000305175781,"right":1235.4375457763672,"top":376.5,"width":662.9375152587891,"x":572.5000305175781,"y":376.5},"innerHTML":"Muffins de limón y almendra con semillas de amapola","outerHTML":"Muffins de limón y almendra con semillas de amapola","tagName":"STRONG","textContent":"Muffins de limón y almendra con semillas de amapola","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[6]/span[2]/span[1]/strong[1]"},"selected":"Muffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day"},"event_id":31,"element_html":"Muffins de limón y almendra con semillas de amapola","screenshot_effect":null}},{"type":"browser","timestamp":177.09299993515015,"state":{"screenshot":"screenshot-30-1.png","page":"page-32-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":383,"mouseY":323,"tabId":1465016508,"timestamp":1689856246629,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":574.5,"clientY":484.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":33,"layerY":370,"metaKey":false,"movementX":0,"movementY":0,"offsetX":12.0,"offsetY":22.5,"pageX":574.5,"pageY":1114.5,"returnValue":true,"screenX":574.5,"screenY":591.0,"shiftKey":false,"timeStamp":142387.5,"x":574.5,"y":484.5},"element":{"attributes":{"data-webtasks-id":"225694be-9fb5-4421"},"bbox":{"bottom":496.5,"height":33.0,"left":572.5000305175781,"right":958.4531707763672,"top":463.5,"width":385.95314025878906,"x":572.5000305175781,"y":463.5},"innerHTML":"Apple cinnamon overnight oats","outerHTML":"Apple cinnamon overnight oats","tagName":"STRONG","textContent":"Apple cinnamon overnight oats","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[7]/span[2]/span[1]/strong[1]"}},"event_id":32,"element_html":"Apple cinnamon overnight oats","screenshot_effect":null}},{"type":"browser","timestamp":182.8989999294281,"state":{"screenshot":"screenshot-33-1.png","page":"page-34-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":301,"mouseY":407,"tabId":1465016508,"timestamp":1689856252435,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":451.5,"clientY":610.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":301,"layerY":827,"metaKey":false,"movementX":0,"movementY":0,"offsetX":121.5,"offsetY":1150.5,"pageX":451.5,"pageY":1240.5,"returnValue":true,"screenX":451.5,"screenY":717.0,"shiftKey":false,"timeStamp":148205.19999998808,"x":451.5,"y":610.5},"element":{"attributes":{"class":"flex flex-col pt-lg pb-[124px] px-md md:px-lg","data-webtasks-id":"59b3bca9-16ea-42a2"},"bbox":{"bottom":2810.187469482422,"height":3349.6875,"left":330.0,"right":1871.0000610351562,"top":-539.5000305175781,"width":1541.0000610351562,"x":330.0,"y":-539.5000305175781},"innerHTML":"
    \"User
    webtasksnavigator8343
    Like
    Find me some Easy breakfast recipe that requires minimal time.
    Answer
    Here are some easy breakfast recipes that require minimal time:\n
      \n
    1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
      1
      .
      \n
    2. \n
    3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
      1
      .
      \n
    4. \n
    5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
      1
      .
      \n
    6. \n
    7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
      1
      .
      \n
    8. \n
    9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
      2
      .
      \n
    10. \n
    11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
      3
      .
      \n
    12. \n
    13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
      4
      .
      \n
    14. \n
    15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
      5
      .
      \n
    16. \n
    17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
      5
      .
      \n
    18. \n
    19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
      5
      .
      \n
    20. \n
    \nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.
    \"related\"\"related\"\"related\"\"related\"
    Related
    breakfast recipes that can be made ahead of time
    healthy breakfast options that require minimal prep time
    breakfast recipes that can be made with pantry staples
    ","outerHTML":"
    \"User
    webtasksnavigator8343
    Like
    Find me some Easy breakfast recipe that requires minimal time.
    Answer
    Here are some easy breakfast recipes that require minimal time:\n
      \n
    1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
      1
      .
      \n
    2. \n
    3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
      1
      .
      \n
    4. \n
    5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
      1
      .
      \n
    6. \n
    7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
      1
      .
      \n
    8. \n
    9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
      2
      .
      \n
    10. \n
    11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
      3
      .
      \n
    12. \n
    13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
      4
      .
      \n
    14. \n
    15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
      5
      .
      \n
    16. \n
    17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
      5
      .
      \n
    18. \n
    19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
      5
      .
      \n
    20. \n
    \nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.
    \"related\"\"related\"\"related\"\"related\"
    Related
    breakfast recipes that can be made ahead of time
    healthy breakfast options that require minimal prep time
    breakfast recipes that can be made with pantry staples
    ","tagName":"DIV","textContent":"webtasksnavigator8343LikeFind me some Easy breakfast recipe that requires minimal time.Quick Search42 Easy Breakfast Ideas with 5 Ingredients or Less - Taste of Hometasteofhome·133+ Easy Breakfast Ideas: Tasty Recipes By Category (30 mins or less)favfamilyrecipes·236 Quick and Easy Breakfast Ideas to Start Your Day Off Rightgoodhousekeeping·318 Easy No-Cook Breakfast Ideas That Taste Amazing - Greatistgreatist·440 Easy Breakfast Ideas - A Couple Cooksacouplecooks·5Answer Here are some easy breakfast recipes that require minimal time:\n\n\nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time1.\n\n\nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish1.\n\n\nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast1.\n\n\nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option1.\n\n\nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea2.\n\n\nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day3.\n\n\nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples4.\n\n\nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast5.\n\n\nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast5.\n\n\nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients5.\n\n\nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.Not AccurateView SourcesCopy To ClipboardEdit QueryRelatedbreakfast recipes that can be made ahead of timehealthy breakfast options that require minimal prep timebreakfast recipes that can be made with pantry staples5 left. Reloads every 4 hours.Copilot · 5","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]"}},"event_id":34,"element_html":"
    \"User
    webtasksnavigator8343
    Like
    Find me some Easy breakfast recipe that requires minimal time.
    Answer
    Here are some easy breakfast recipes that require minimal time:\n
      \n
    1. \nSausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time
      1
      .
      \n
    2. \n
    3. \nOvernight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish
      1
      .
      \n
    4. \n
    5. \nChorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast
      1
      .
      \n
    6. \n
    7. \nBerries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option
      1
      .
      \n
    8. \n
    9. \nBreakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea
      2
      .
      \n
    10. \n
    11. \nMuffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day
      3
      .
      \n
    12. \n
    13. \nApple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples
      4
      .
      \n
    14. \n
    15. \nGreek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast
      5
      .
      \n
    16. \n
    17. \nDiner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast
      5
      .
      \n
    18. \n
    19. \nMini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients
      5
      .
      \n
    20. \n
    \nThese recipes require minimal time and can be enjoyed for a quick and delicious breakfast.
    \"related\"\"related\"\"related\"\"related\"
    Related
    breakfast recipes that can be made ahead of time
    healthy breakfast options that require minimal prep time
    breakfast recipes that can be made with pantry staples
    ","screenshot_effect":null}},{"type":"browser","timestamp":184.02600002288818,"state":{"screenshot":"screenshot-32-1.png","page":"page-35-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":384,"mouseY":320,"tabId":1465016508,"timestamp":1689856253562,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":576.0,"clientY":480.0,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":35,"layerY":368,"metaKey":false,"movementX":0,"movementY":0,"offsetX":13.5,"offsetY":18.0,"pageX":576.0,"pageY":1111.5,"returnValue":true,"screenX":576.0,"screenY":586.5,"shiftKey":false,"timeStamp":149333.30000001192,"x":576.0,"y":480.0},"element":{"attributes":{"data-webtasks-id":"225694be-9fb5-4421"},"bbox":{"bottom":496.5,"height":33.0,"left":572.5000305175781,"right":958.4531707763672,"top":463.5,"width":385.95314025878906,"x":572.5000305175781,"y":463.5},"innerHTML":"Apple cinnamon overnight oats","outerHTML":"Apple cinnamon overnight oats","tagName":"STRONG","textContent":"Apple cinnamon overnight oats","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[7]/span[2]/span[1]/strong[1]"}},"event_id":35,"element_html":"Apple cinnamon overnight oats","screenshot_effect":null}},{"type":"browser","timestamp":186.29800009727478,"state":{"screenshot":"screenshot-36-1.png","page":"page-36-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":1167,"mouseY":385,"tabId":1465016508,"timestamp":1689856255834,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":151607.09999996424},"element":{"attributes":{"data-webtasks-id":"225694be-9fb5-4421"},"bbox":{"bottom":496.5,"height":33.0,"left":572.5000305175781,"right":958.4531707763672,"top":463.5,"width":385.95314025878906,"x":572.5000305175781,"y":463.5},"innerHTML":"Apple cinnamon overnight oats","outerHTML":"Apple cinnamon overnight oats","tagName":"STRONG","textContent":"Apple cinnamon overnight oats","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[7]/span[2]/span[1]/strong[1]"},"selected":"Apple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples"},"event_id":36,"element_html":"Apple cinnamon overnight oats","screenshot_effect":null}},{"type":"browser","timestamp":197.11999988555908,"state":{"screenshot":"screenshot-36-1.png","page":"page-37-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":383,"mouseY":395,"tabId":1465016508,"timestamp":1689856266656,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":574.5,"clientY":592.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":33,"layerY":442,"metaKey":false,"movementX":0,"movementY":0,"offsetX":12.0,"offsetY":7.5,"pageX":574.5,"pageY":1222.5,"returnValue":true,"screenX":574.5,"screenY":699.0,"shiftKey":false,"timeStamp":162417.59999996424,"x":574.5,"y":592.5},"element":{"attributes":{"data-webtasks-id":"2e73e85b-ea9c-44a7"},"bbox":{"bottom":619.5,"height":33.0,"left":572.5000305175781,"right":831.5937881469727,"top":586.5,"width":259.09375762939453,"x":572.5000305175781,"y":586.5},"innerHTML":"Greek Yogurt Parfaits","outerHTML":"Greek Yogurt Parfaits","tagName":"STRONG","textContent":"Greek Yogurt Parfaits","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[8]/span[2]/span[1]/strong[1]"}},"event_id":37,"element_html":"Greek Yogurt Parfaits","screenshot_effect":null}},{"type":"browser","timestamp":198.78600001335144,"state":{"screenshot":"screenshot-38-1.png","page":"page-38-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":459,"mouseY":437,"tabId":1465016508,"timestamp":1689856268322,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":164094.59999996424},"element":{"attributes":{"data-webtasks-id":"2e73e85b-ea9c-44a7"},"bbox":{"bottom":619.5,"height":33.0,"left":572.5000305175781,"right":831.5937881469727,"top":586.5,"width":259.09375762939453,"x":572.5000305175781,"y":586.5},"innerHTML":"Greek Yogurt Parfaits","outerHTML":"Greek Yogurt Parfaits","tagName":"STRONG","textContent":"Greek Yogurt Parfaits","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[8]/span[2]/span[1]/strong[1]"},"selected":"Greek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast"},"event_id":38,"element_html":"Greek Yogurt Parfaits","screenshot_effect":null}},{"timestamp":215.464,"speaker":"navigator","utterance":"Here are some easy breakfast recipes that require minimal time:\n\t\n\t-Sausage & Crescent Roll Casserole: This tasty breakfast casserole is made with crescent rolls and can be prepared ahead of time.\n\t\n\t-Overnight Cherry-Almond Oatmeal: Place the ingredients in a slow cooker before bed, and wake up to a healthy and satisfying dish.\n\t\n\t- Chorizo Salsa Omelet: Jazz up a basic omelet with a few ingredients for a delicious breakfast.\n\t\n\t-Berries in Yogurt Cream: Combine yogurt, cream, brown sugar, and fresh fruit for a refreshing breakfast option.\n\t\n\t-Breakfast Quesadillas: These hearty quesadillas are a quick and easy breakfast idea.\n\t\n\t-Muffins de limón y almendra con semillas de amapola: These bright lemon muffins topped with crunchy almonds are a great way to start the day.\n\t\n\t-Apple cinnamon overnight oats: Make a healthier version of apple crisp that you can enjoy for breakfast by combining oats, cinnamon, maple syrup, almond milk, and chopped apples.","type":"chat"},{"type":"browser","timestamp":233.65000009536743,"state":{"screenshot":"screenshot-40-1.png","page":"page-42-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":384,"mouseY":357,"tabId":1465016508,"timestamp":1689856303186,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":576.0,"clientY":535.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":35,"layerY":504,"metaKey":false,"movementX":0,"movementY":0,"offsetX":13.5,"offsetY":13.5,"pageX":576.0,"pageY":1315.5,"returnValue":true,"screenX":576.0,"screenY":642.0,"shiftKey":false,"timeStamp":198954.09999996424,"x":576.0,"y":535.5},"element":{"attributes":{"data-webtasks-id":"c3e0f0b2-c02f-437d"},"bbox":{"bottom":556.5,"height":33.0,"left":572.5000305175781,"right":836.7187957763672,"top":523.5,"width":264.21876525878906,"x":572.5000305175781,"y":523.5},"innerHTML":"Diner-style fried eggs","outerHTML":"Diner-style fried eggs","tagName":"STRONG","textContent":"Diner-style fried eggs","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[9]/span[2]/span[1]/strong[1]"}},"event_id":42,"element_html":"Diner-style fried eggs","screenshot_effect":null}},{"type":"browser","timestamp":235.67799997329712,"state":{"screenshot":"screenshot-43-1.png","page":"page-43-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":796,"mouseY":437,"tabId":1465016508,"timestamp":1689856305214,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":200985.80000001192},"element":{"attributes":{"data-webtasks-id":"c3e0f0b2-c02f-437d"},"bbox":{"bottom":556.5,"height":33.0,"left":572.5000305175781,"right":836.7187957763672,"top":523.5,"width":264.21876525878906,"x":572.5000305175781,"y":523.5},"innerHTML":"Diner-style fried eggs","outerHTML":"Diner-style fried eggs","tagName":"STRONG","textContent":"Diner-style fried eggs","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[9]/span[2]/span[1]/strong[1]"},"selected":"Diner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast"},"event_id":43,"element_html":"Diner-style fried eggs","screenshot_effect":null}},{"type":"browser","timestamp":240.68700003623962,"state":{"screenshot":"screenshot-44-1.png","page":"page-44-0.html","screenshot_status":"good"},"action":{"intent":"scroll","arguments":{"metadata":{"mouseX":472,"mouseY":355,"tabId":1465016508,"timestamp":1689856310223,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":0,"clientX":882.0,"clientY":496.5,"composed":true,"ctrlKey":false,"detail":0,"eventPhase":0,"layerX":238,"layerY":506,"metaKey":false,"movementX":0,"movementY":0,"offsetX":318.0,"offsetY":361.5,"pageX":882.0,"pageY":1318.5,"returnValue":true,"screenX":882.0,"screenY":603.0,"shiftKey":false,"timeStamp":205468.59999996424,"x":882.0,"y":496.5},"scrollX":0,"scrollY":300},"event_id":44,"element_html":null,"screenshot_effect":"screenshot-44-1.png"}},{"type":"browser","timestamp":242.07999992370605,"state":{"screenshot":"screenshot-44-1.png","page":"page-45-0.html","screenshot_status":"good"},"action":{"intent":"click","arguments":{"metadata":{"mouseX":384,"mouseY":215,"tabId":1465016508,"timestamp":1689856311616,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"altKey":false,"button":0,"buttons":1,"clientX":576.0,"clientY":322.5,"composed":true,"ctrlKey":false,"detail":1,"eventPhase":0,"layerX":35,"layerY":563,"metaKey":false,"movementX":0,"movementY":0,"offsetX":13.5,"offsetY":13.5,"pageX":576.0,"pageY":1404.0,"returnValue":true,"screenX":576.0,"screenY":429.0,"shiftKey":false,"timeStamp":207384.5,"x":576.0,"y":322.5},"element":{"attributes":{"data-webtasks-id":"6e344c53-ab99-4a3e"},"bbox":{"bottom":343.5,"height":33.0,"left":572.5000305175781,"right":727.2187843322754,"top":310.5,"width":154.71875381469727,"x":572.5000305175781,"y":310.5},"innerHTML":"Mini frittatas","outerHTML":"Mini frittatas","tagName":"STRONG","textContent":"Mini frittatas","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[10]/span[2]/span[1]/strong[1]"}},"event_id":45,"element_html":"Mini frittatas","screenshot_effect":null}},{"type":"browser","timestamp":243.57800006866455,"state":{"screenshot":"screenshot-46-1.png","page":"page-46-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":538,"mouseY":255,"tabId":1465016508,"timestamp":1689856313114,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":208886.59999996424},"element":{"attributes":{"data-webtasks-id":"6e344c53-ab99-4a3e"},"bbox":{"bottom":343.5,"height":33.0,"left":572.5000305175781,"right":727.2187843322754,"top":310.5,"width":154.71875381469727,"x":572.5000305175781,"y":310.5},"innerHTML":"Mini frittatas","outerHTML":"Mini frittatas","tagName":"STRONG","textContent":"Mini frittatas","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/ol[1]/li[10]/span[2]/span[1]/strong[1]"},"selected":"Mini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients"},"event_id":46,"element_html":"Mini frittatas","screenshot_effect":null}},{"timestamp":250.464,"speaker":"navigator","utterance":"-Greek Yogurt Parfaits: Layer yogurt, berries, and granola for a quick and fancy-looking breakfast.\n\t\n\t-Diner-style fried eggs: Master the techniques of making sunny side up, over easy, over medium, or over hard eggs for a hearty breakfast.\n\t\n\t-Mini frittatas: These egg muffins are easy to meal prep and can be customized with your favorite ingredients.","type":"chat"},{"type":"browser","timestamp":268.3699998855591,"state":{"screenshot":"screenshot-51-1.png","page":"page-51-0.html","screenshot_status":"good"},"action":{"intent":"copy","arguments":{"metadata":{"mouseX":890,"mouseY":266,"tabId":1465016508,"timestamp":1689856337906,"url":"https://www.perplexity.ai/search/db4fc564-e33e-4184-aff7-175bcff8448e?s=u","viewportHeight":601,"viewportWidth":1280,"zoomLevel":1.5},"properties":{"composed":true,"eventPhase":0,"returnValue":true,"timeStamp":233678.19999998808},"element":{"attributes":{"class":"","data-webtasks-id":"5bd00d6e-090c-4d5d"},"bbox":{"bottom":280.5,"height":33.0,"left":524.5000305175781,"right":1618.5000915527344,"top":247.5,"width":1094.0000610351562,"x":524.5000305175781,"y":247.5},"innerHTML":"These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.","outerHTML":"These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.","tagName":"SPAN","textContent":"These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.","xpath":"id(\"__next\")/main[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[3]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/span[2]"},"selected":"recipes"},"event_id":51,"element_html":"These recipes require minimal time and can be enjoyed for a quick and delicious breakfast.","screenshot_effect":null}},{"timestamp":274.464,"speaker":"navigator","utterance":"Please see the recipes images.","type":"chat"},{"timestamp":293.464,"speaker":"instructor","utterance":"Looks good!","type":"chat"},{"timestamp":303.464,"speaker":"navigator","utterance":"Alright!","type":"chat"},{"timestamp":306.464,"speaker":"instructor","utterance":"That's it for now.","type":"chat"}],"status":"checked"} \ No newline at end of file